﻿/* ==============================================
   base.css — variables, reset, base typography, utilities
   Loaded first. Split from style.css.
   ============================================== */


/* ─── CUSTOM PROPERTIES ─────────────────────── */
:root {
  --color-primary: #FF7A00;
  --color-secondary: #241F20;
  --color-teal: #3E525A;
  --color-green: #5AA900;
  --color-bg-gray: #F4F4F4;
  --color-border: #DFDFDF;
  --color-border-light: #E9E9E9;

  --font: 'Open Sans', sans-serif;

  /* ─── TYPOGRAPHY SCALE ───────────────────── */
  --fs-xs: 0.8125rem;
  /* 13px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.25rem;
  /* 20px */
  --fs-lg: 1.3125rem;
  /* 21px */
  --fs-xl: 1.5rem;
  /* 24px */
  --fs-2xl: 1.75rem;
  /* 28px */
  --fs-3xl: 2rem;
  /* 32px */
  --fs-4xl: 2.5rem;
  /* 40px */
  --fs-5xl: 3rem;
  /* 48px */
  --fs-6xl: 4rem;
  /* 64px */

  /* Semantic aliases */
  --font-size-h1: var(--fs-6xl);
  --font-size-h2: var(--fs-5xl);
  --font-size-h3: var(--fs-4xl);
  --font-size-h4: var(--fs-3xl);
  --font-size-h5: var(--fs-2xl);
  --font-size-h6: var(--fs-xl);
  --font-size-lead: var(--fs-lg);
  --font-size-desc: var(--fs-md);
  --font-size-body: var(--fs-base);
  --font-size-small: var(--fs-sm);
  --font-size-caption: var(--fs-xs);

  /* ─── FONT WEIGHTS ───────────────────────── */
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --font-weight-heading: var(--fw-bold);
  --font-weight-body: var(--fw-regular);
  --font-weight-ui: var(--fw-semibold);
  --font-weight-button: var(--fw-semibold);
  --font-weight-nav: var(--fw-bold);

  /* ─── LINE HEIGHTS ───────────────────────── */
  --lh-heading: 1.1;
  --lh-subhead: 1.2;
  --lh-body: 1.6;
  --lh-ui: normal;

  --line-height-h1: var(--lh-heading);
  --line-height-h2: var(--lh-heading);
  --line-height-h3: var(--lh-subhead);
  --line-height-body: var(--lh-body);
  --line-height-ui: var(--lh-ui);

  /* ─── LETTER SPACING ─────────────────────── */
  --ls-heading: -0.02em;
  --ls-body: -0.02em;
  --ls-caps: 0.08em;

  /* ─── FINELINE (brand manual p.17 + Fineline spec) ─────────
     Weight equals the stem weight of the headline typeface, so it is
     expressed in em and scales with the headline font-size instead of
     being a fixed pixel value. Gap is scalable for the same reason. */
  --fineline-weight: 0.1em;
  --fineline-gap: 0.2em;

  --container-max: 1728px;
  --content-width: 1428px;
  --section-px: 150px;
  --section-py: 96px;
  --wide-section-px: 144px;
  --footer-section-px: 145px;
  --page-gutter: max(var(--section-px), calc((100vw - var(--container-max)) / 2 + var(--section-px)));
  --wide-page-gutter: max(var(--wide-section-px), calc((100vw - var(--container-max)) / 2 + var(--wide-section-px)));
  --footer-page-gutter: max(var(--footer-section-px), calc((100vw - var(--container-max)) / 2 + var(--footer-section-px)));
  --frame-gutter-10: max(10px, calc((100vw - var(--container-max)) / 2 + 10px));
  --frame-gutter-24: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
  --frame-gutter-64: max(64px, calc((100vw - var(--container-max)) / 2 + 64px));
  --frame-gutter-132: max(132px, calc((100vw - var(--container-max)) / 2 + 132px));
  --frame-gutter-140: max(140px, calc((100vw - var(--container-max)) / 2 + 140px));
  --frame-gutter-142: max(142px, calc((100vw - var(--container-max)) / 2 + 142px));
  --frame-gutter-149: max(149px, calc((100vw - var(--container-max)) / 2 + 149px));
  --frame-gutter-150: max(150px, calc((100vw - var(--container-max)) / 2 + 150px));
  --frame-gutter-153: max(153px, calc((100vw - var(--container-max)) / 2 + 153px));
  --frame-gutter-161: max(161px, calc((100vw - var(--container-max)) / 2 + 161px));
}

/* ─── RESET & BASE ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--color-secondary);
  background: #fff;
  margin: 0;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Visually-hidden utility for screen-reader-only labels (used by tracking input) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 12px 18px;
  border: 3px solid #fff;
  border-radius: 10px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 0 0 3px var(--color-primary), 0 8px 24px rgba(36, 31, 32, .24);
  transform: translateY(calc(-100% - 24px));
  transition: transform .15s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  outline: none;
  transform: translateY(0);
}

#main-content {
  scroll-margin-top: 120px;
}

#pricing-rates,
#pricing-limits {
  scroll-margin-top: 120px;
}

#main-content:focus {
  outline: none;
}

/* ==============================================
   components.css — shared layout primitives + buttons + inline links + .hero base
   Loaded after base.css.
   ============================================== */

/* ─── SHARED LAYOUT ──────────────────────────── */
.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
  width: 100%;
}

/* Section label with fineline (brand manual: fineline length = length of the
   first overlined line; weight = stem weight of the headline typeface).
   The fineline sits on the headline box itself so that both the weight and
   the gap scale with the headline font-size (em resolves against the
   headline, not against the wrapper). */
.section-label {
  display: inline-flex;
  padding-top: 0;
  border-top: 0;
  margin-bottom: 0;
}

.section-label--dark {
  color: var(--color-secondary);
}

.section-label--white {
  color: #fff;
}

.section-label h2,
.section-label p {
  font-family: var(--font);
  font-weight: 700;
  line-height: var(--lh-heading);
  padding-top: var(--fineline-gap);
  border-top: var(--fineline-weight) solid currentColor;
}


/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.42px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--lg {
  font-size: 21px;
  padding: 12px 24px;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--secondary {
  border: 1px solid rgba(36, 31, 32, 0.28);
  background: #fff;
  color: var(--color-secondary);
}

.btn--dark {
  background: var(--color-secondary);
  color: #fff;
}

.btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.locale-dirty-dialog {
  width: min(520px, calc(100vw - 40px));
  max-width: 100%;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--color-secondary);
  background: #fff;
  box-shadow: 0 24px 72px rgba(36, 31, 32, 0.28);
}

.locale-dirty-dialog::backdrop {
  background: rgba(36, 31, 32, 0.62);
}

.locale-dirty-dialog__content {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.locale-dirty-dialog__content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.locale-dirty-dialog__content p {
  font-size: 16px;
  line-height: 1.5;
}

.locale-dirty-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 6px;
}

.locale-dirty-dialog__actions .btn {
  min-height: 44px;
  padding: 10px 20px;
}

.locale-dirty-dialog__actions .btn:focus-visible {
  outline: 3px solid #242021;
  outline-offset: 3px;
}

/* Learn-more inline link */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.32px;
  line-height: normal;
}

.learn-more-link--sm {
  gap: 16px;
}

.learn-more-link img {
  width: 16px;
  height: 16px;
}

/* Read more link (orange) */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.32px;
  line-height: normal;
}

.read-more-link img {
  width: 24px;
  height: 24px;
}

/* View all link */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.4px;
  line-height: normal;
}

.view-all-link img {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 813px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ==============================================
   navigation.css — fixed site header, primary nav, dropdowns, header tracker, scrim
   Loaded after components.css.
   Selectors used by assets/nav.js:
     site-header--scrolled, site-header--dropdown-open,
     site-header--send-open, site-header--receive-open,
     site-header--business-open, is-open
   ============================================== */

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SITE HEADER — Figma node 79:6111 (Navigation Header component)       ║
   ║  Variants: Default (transparent), White-On-Scroll, Opened (dropdown)  ║
   ║  Shared public-page fixed positioning.                               ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#business-solutions,
#erp-systems,
#receive-tracker,
#support-contact {
  scroll-margin-top: 120px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  height: 102px;
  max-width: 1728px;
  margin: 0 auto;
}

/* White / scrolled / dropdown-open state */
.site-header--scrolled,
.site-header--dropdown-open,
.site-header--mobile-open {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ─── Left section: logo + nav links ─── */
.site-header__left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 136px;
  height: 40px;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 136px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: filter 0.25s ease;
}

.site-header:not(.site-header--scrolled):not(.site-header--dropdown-open):not(.site-header--mobile-open) .site-logo__icon {
  filter: brightness(0) invert(1);
}

/* ─── Nav links ─── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-mobile-navigation {
  display: none;
}

.site-nav__item {
  position: static;
  /* dropdown panel is absolute relative to .site-header */
  display: flex;
  align-items: center;
  height: 102px;
  /* full header height so hover area covers gap to dropdown */
}

.site-nav__link {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: normal;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 14px 0;
  /* vertical hit area */
  display: inline-flex;
  align-items: center;
  height: 54px;
  border-bottom: 4px solid transparent;
  /* placeholder for active/open underline */
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-header--scrolled .site-nav__link,
.site-header--dropdown-open .site-nav__link {
  color: #000;
}

/* Open-trigger underline (Figma "Opened" state: 4px orange bottom border) */
.site-nav__item--has-dropdown.is-open .site-nav__link,
.site-nav__item--has-dropdown:hover .site-nav__link,
.site-nav__item--has-dropdown:focus-within .site-nav__link {
  border-bottom-color: var(--color-primary);
}

/* aria-current visible state (only used on for-business For Business link) — orange underline */
.site-nav__link[aria-current="page"],
.site-nav__link[aria-current="true"] {
  border-bottom-color: var(--color-primary);
}

/* ─── Right section: CTA buttons ─── */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}

.site-header__cta img {
  width: 24px;
  height: 24px;
}

.site-header__cta--tracker {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  justify-content: center;
  transition: width 0.18s ease;
}

.site-header__tracker-input {
  display: none;
  width: 0;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.32px;
  line-height: normal;
  outline: none;
}

.site-header__tracker-input::placeholder {
  color: #000;
  opacity: 1;
}

.site-header__cta--tracker:focus-within,
.track-trace-input-row:focus-within,
.send-tracking-input-row:focus-within,
.cs-search-bar:focus-within,
.faq-page__search:focus-within {
  outline: 3px solid #242021;
  outline-offset: 3px;
}

.site-header__tracker-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-header__tracker-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}

.site-header__tracker-label--expanded {
  display: none;
}

.site-header--send-open .site-header__cta--tracker,
.site-header--receive-open .site-header__cta--tracker,
.site-header--business-open .site-header__cta--tracker {
  width: 434px;
  justify-content: space-between;
}

.site-header--send-open .site-header__tracker-input,
.site-header--receive-open .site-header__tracker-input,
.site-header--business-open .site-header__tracker-input {
  display: block;
  flex: 1;
  width: auto;
}

.site-header--send-open .site-header__tracker-label--compact,
.site-header--receive-open .site-header__tracker-label--compact,
.site-header--business-open .site-header__tracker-label--compact {
  display: none;
}

.site-header--send-open .site-header__tracker-label--expanded,
.site-header--receive-open .site-header__tracker-label--expanded,
.site-header--business-open .site-header__tracker-label--expanded {
  display: inline;
}

.site-header__cta--contact {
  background: var(--color-primary);
  border: none;
  color: #fff;
  gap: 16px;
}

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.language-switcher__trigger {
  min-width: 64px;
  height: 56px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.language-switcher__trigger::-webkit-details-marker {
  display: none;
}

.site-header--scrolled .language-switcher__trigger,
.site-header--dropdown-open .language-switcher__trigger,
.language-switcher[open] .language-switcher__trigger {
  border-color: rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #000;
}

.language-switcher__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.language-switcher[open] .language-switcher__chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 170px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.language-switcher__option {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 9px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  background: #f5f5f5;
  outline: none;
}

.language-switcher__option.is-active {
  color: var(--color-primary);
}

.language-switcher__active-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ─── Dropdown panel (positioned below header bar)
       BG fills full viewport width (so it merges with .site-header bg).
       Content centered to max-width 1728 via inner wrapper. */
.site-nav__dropdown {
  position: absolute;
  top: 102px;
  left: 0;
  right: 0;
  background: #fff;
  padding-bottom: 32px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.site-nav__item--has-dropdown.is-open .site-nav__dropdown,
.site-nav__item--has-dropdown:hover .site-nav__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-nav__dropdown-inner {
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 21px 32px 0;
  min-height: 300px;
}

.site-nav__dropdown-items {
  margin-left: 128px;
  /* Figma pl-128 inside dropdown content */
  width: 393px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav__dropdown-items--wide {
  width: 461px;
}

.site-nav__dropdown-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 44px;
  text-decoration: none;
  color: inherit;
  gap: 16px;
  padding: 0 12px;
  margin: 0 -12px;
  border-radius: 8px;
  transform-origin: left center;
  transition: transform 0.15s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link.is-active {
  transform: scale(1.025);
}


.site-nav__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.site-nav__dropdown-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__dropdown-title-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-nav__dropdown-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: normal;
  white-space: nowrap;
}

.site-nav__dropdown-desc {
  display: none;
}

.site-nav__dropdown-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 10px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.site-nav__dropdown-link:hover .site-nav__dropdown-arrow,
.site-nav__dropdown-link.is-active .site-nav__dropdown-arrow {
  transform: translateX(4px);
  filter: brightness(0) invert(44%) sepia(100%) saturate(550%) hue-rotate(350deg);
}

/* Featured card on the right side of dropdown */
.site-nav__dropdown-feature {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  margin-left: auto;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  outline-offset: 4px;
  transition: transform 0.15s ease;
}

.site-nav__dropdown-feature:hover,
.site-nav__dropdown-feature:focus-visible {
  transform: translateY(-2px);
}

.site-nav__dropdown-feature--wide .site-nav__dropdown-feature-img {
  width: 421px;
}

.site-nav__dropdown-feature-img--receive {
  object-position: 49% 50%;
}

.site-nav__dropdown-feature-img--business {
  object-position: 57% 50%;
}

.site-nav__dropdown-feature--wide .site-nav__dropdown-feature-text {
  width: 387px;
}

.site-nav__dropdown-feature-img {
  width: 378px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.site-nav__dropdown-feature-text {
  width: 378px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 24px;
}

.site-nav__dropdown-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: normal;
  margin-bottom: 7px;
}

.site-nav__dropdown-feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.32px;
  line-height: normal;
  width: 306px;
}

.site-nav__dropdown-feature-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  text-decoration: none;
}

.site-nav__dropdown-feature-link img {
  width: 24px;
  height: 24px;
  transition: transform 0.15s ease;
}

.site-nav__dropdown-feature:hover .site-nav__dropdown-feature-link img,
.site-nav__dropdown-feature:focus-visible .site-nav__dropdown-feature-link img {
  transform: translateX(4px);
}

/* Page scrim while dropdown is open.
   Starts immediately below the header bar (y=102); the dropdown panel
   (z=1000 via .site-header) paints over it, so the scrim only shows in the
   area below the dropdown content. */
.site-nav__dropdown-scrim {
  position: fixed;
  left: 0;
  right: 0;
  top: 102px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.site-header.site-header--dropdown-open~.site-nav__dropdown-scrim {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ==============================================
   footer.css — site-wide footer + footer responsive
   Loaded after navigation.css.
   ============================================== */

/* ═══════════════════════════════════════════════
   FOOTER
   Footer (307:6409): y=7405, h=780
   bg: white, border-top: 1px #E9E9E9
   ═══════════════════════════════════════════════ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  padding: 64px var(--footer-page-gutter);
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Decorative background element (orange circles SVG) */
/* Figma: left=1035px (content) + 145px (padding) = 1180px; top=272+64=336px */
.footer-bg-decoration {
  position: absolute;
  left: calc(50% + 316px);
  top: 336px;
  width: 817px;
  height: 817px;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: calc(var(--container-max) - (var(--footer-section-px) * 2));
  width: 100%;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.footer-logo-img {
  width: 109px;
  height: 71px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 21px;
  font-weight: 800;
  color: #000;
  letter-spacing: 1.47px;
  line-height: 1;
  text-transform: uppercase;
}

/* Navigation panel and highlighted contact card */
.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 32px;
  align-items: stretch;
}

.footer-nav-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 32px;
  background: transparent;
  border: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.4px;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--color-primary);
}

.footer-link {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.32px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-link:focus-visible {
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Contact column */
.footer-col--contact {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Company pages */
.page-send-detail.page-corporate--sustainability .corporate-detail-hero.has-custom-hero::before {
  background-position: center 58%;
}

.corporate-gallery {
  padding: 96px var(--page-gutter);
  background: #fff;
}

.corporate-gallery__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

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

.corporate-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #f4f4f4;
}

.corporate-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.corporate-gallery__item:hover img {
  transform: scale(1.025);
}

@media (max-width: 900px) {
  .corporate-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .corporate-gallery {
    padding: 64px 20px;
  }

  .corporate-gallery__grid {
    grid-template-columns: 1fr;
  }
}

.footer-contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: normal;
  white-space: nowrap;
}

.footer-contact-desc {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.28px;
  line-height: 1.4;
  width: 337px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-contact-link {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.32px;
  text-decoration: underline;
  line-height: normal;
}

.footer-contact-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.32px;
  line-height: normal;
}

/* Footer bottom: social + legal */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid #e5e3e3;
}

.footer-social {
  display: flex;
  gap: 48px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.32px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-social-link img {
  width: 24px;
  height: 24px;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #565153;
  letter-spacing: -0.14px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.footer-legal-link+.footer-legal-link {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #d7d4d5;
}

.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-legal-link:focus-visible {
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: 5px;
  border-radius: 2px;
}

/* ==============================================
   Homepage-specific styles
   Includes homepage hero overlay, services, T&T widget, business cards,
   API card, pickup section, support section, sustainability, news, partners.
   ============================================== */

/* ═══════════════════════════════════════════════
   HERO SECTION
   Frame coords (Figma): hero ends at y=813, width=1728
   thumb.php 1 (bg image): x=0, y=-10, w=1728, h=749 → image visually ends at y=739
   Nav: y=0, h=102. Headline at y=519. Quick-links at y=688 (h=125, ends y=813).
   T&T at y=506, h=307 (ends y=813).
   ⇒ Quick-links and T&T overhang the image bottom by 74px (813-739),
     visually crossing into the white area shared with services-overview.
   Hero bg is white (not dark) so the 74px below the image flows seamlessly
   into the next section, letting the boxes appear to hang below the hero.
   ═══════════════════════════════════════════════ */
/* Hero bg image — Figma node 270:871 (`thumb.php 1`)
   Container: top=-10, w=100%, h=749 (10px clipped above hero by hero overflow:hidden)
   Inside container, image renders at:
     width: 116.33%, height: 109.46%, left: -8.15%, top: -9.48%
   = 2010×820 px positioned at -141,-71 inside a 1728×749 container
   = image horizontally centered, vertically pinned to BOTTOM (top 71px cropped)
   Natural PNG is 2393×976 (aspect 2.452) so `background-size: 116.33% auto`
   yields exactly the Figma render at any hero width. */
.hero::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 749px;
  background-image: var(--hero-background-image);
  background-repeat: no-repeat;
  background-size: 116.33% auto;
  background-position: center bottom;
  z-index: 0;
}

/* Hero body: headline (left) + T&T widget (right) */
.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding-left: max(148px, calc((100vw - var(--container-max)) / 2 + 148px));
  padding-right: max(146px, calc((100vw - var(--container-max)) / 2 + 146px));
  gap: 0;
  flex: 1;
  padding-bottom: 0;
  /* Push content to bottom of hero section */
  margin-top: auto;
}

/* Left column */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title {
  margin-bottom: 44px;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
}

.hero-headline {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

/* Quick links (service cards) inside hero */
.hero-quick-links {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}

.hero-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--color-bg-gray);
  border-radius: 12px;
  width: 368px;
  height: 125px;
  text-decoration: none;
}

.hero-quick-link-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-quick-icon {
  width: 38px;
  height: 38px;
}

.hero-quick-link-inner span {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: normal;
  white-space: nowrap;
}

.hero-quick-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Track & Trace widget */
.track-trace {
  width: 602px;
  height: 307px;
  background: var(--color-primary);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-trace-inner {
  width: 538px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.track-trace-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.track-trace-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.64px;
  line-height: 1;
}

.track-trace-desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.32px;
  line-height: var(--line-height-body);
  width: 303px;
}

/* Input row: white input (left-rounded) + dark search button (right-rounded) */
.track-trace-input-row {
  display: flex;
  align-items: stretch;
  height: 54px;
  width: 100%;
}

.track-trace-input {
  flex: 1;
  border: none;
  outline: none;
  background: #fff;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.32px;
  font-family: var(--font);
  border-radius: 8px 0 0 8px;
  min-width: 0;
}

.track-trace-input::placeholder {
  color: #000;
  opacity: 1;
}

/* Search button — SVG is full 66x54 graphic (dark bg + white icon + right-rounded) */
.track-trace-btn {
  width: 66px;
  height: 54px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
}

.track-trace-btn img {
  width: 66px;
  height: 54px;
  display: block;
}

.tracking-service-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.tracking-service-actions--home {
  width: 100%;
}

.tracking-service-recovery {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
}

.tracking-service-recovery a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.track-trace-external {
  align-self: flex-start;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.track-trace-external:hover {
  text-decoration-thickness: 2px;
}


/* ═══════════════════════════════════════════════
   SERVICES OVERVIEW — Sending + Receiving
   Frame 187 (279:2127): padding 96px/150px
   Two full-width cards stacked, 600px each, gap 72px
   ═══════════════════════════════════════════════ */
.services-overview {
  background: #fff;
  padding: var(--section-py) 0;
}

.services-overview .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin: 0;
  padding: 0 var(--page-gutter);
  width: 100%;
}

/* Each card is full-width, 600px tall, rounded-16, overflow hidden */
.services-card {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

/* Background layer */
.services-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
}

.services-card-bg-color {
  position: absolute;
  inset: 0;
}

.services-card-bg-color--dark {
  background: var(--color-secondary);
}

/* Background image for sending card: image on right side */
.services-card-bg-img {
  position: absolute;
  object-fit: cover;
}

.services-card-bg-img--right {
  left: 21.18%;
  top: -55.57%;
  width: 78.85%;
  height: 234.58%;
}

.services-card-bg-img--left {
  left: -8.15%;
  top: -16.98%;
  width: 48.68%;
  height: 144.83%;
}

/* Text panel */
.services-card-panel {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.services-card-panel--dark {
  background: var(--color-secondary);
  border-radius: 16px 0 0 16px;
  width: 830px;
  flex-shrink: 0;
}

.services-card--orange .services-card-panel--orange {
  margin-left: auto;
}

.services-card-panel--orange {
  background: var(--color-primary);
  border-radius: 0 16px 16px 0;
  width: 852px;
  flex-shrink: 0;
  padding: 48px;
}

/* Top group: title + description (gap 8px) */
.services-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.services-card-top .section-label h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.services-card-desc {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.6;
  max-width: 563px;
}

.services-card-panel--orange .services-card-desc {
  max-width: 501px;
}

/* Bottom group: FAQs + quick-grid (gap 16px) — Figma: Frame 279:2135 */
.services-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* FAQ items inside services card */
.services-faq {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.services-faq-item {
  display: block;
  color: #fff;
}

.services-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
}

.services-faq-question:focus {
  outline: none;
}

.services-faq-question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
  border-radius: 4px;
}

.services-faq-answer {
  padding: 0 38px 12px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.services-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition: grid-template-rows 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
}

.services-faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.services-faq-item.is-open .services-faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.services-faq-answer> :first-child {
  margin-top: 0;
}

.services-faq-answer> :last-child {
  margin-bottom: 0;
}

.faq-arrow {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.services-faq-item.is-open .faq-arrow {
  transform: rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {

  .services-faq-panel,
  .faq-arrow {
    transition: none;
  }
}

/* Quick links 2×2 grid in services card */
.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.services-quick-row {
  display: flex;
  gap: 24px;
}

.service-link-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  min-width: 0;
}

.service-link-pill--orange {
  border-color: rgba(255, 255, 255, 0.6);
}

.service-link-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-link-pill-left img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-link-pill-left span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.service-link-pill-left .service-link-pill__external {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  opacity: 0.9;
  white-space: normal;
}

.service-link-pill img:last-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   BUSINESS SOLUTIONS
   Frame 186 (271:1417): y=2277, h=723
   padding 96px top/bottom, 150px left/right
   ═══════════════════════════════════════════════ */
.business-solutions {
  padding: var(--section-py) 0;
}

.business-solutions .section-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  max-width: none;
  padding: 0 var(--page-gutter);
  margin: 0;
  height: 531px;
}

/* Left column: 444px wide */
.business-left {
  width: 444px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.business-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
  width: 429px;
}

.business-desc {
  font-size: var(--font-size-desc);
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: var(--ls-body);
  line-height: 1.4;
  width: 456px;
}

.business-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Right column: 824px wide, 2 cards side by side with 24px gap */
.business-cards {
  width: 824px;
  height: 531px;
  flex-shrink: 0;
  display: flex;
  gap: 24px;
}

/* API card: 400px wide, orange, full height */
.business-card--api {
  width: 400px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.business-card-content {
  position: relative;
  z-index: 1;
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: flex-start;
}

.business-card-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 304px;
}

.business-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
}

.business-card-desc {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  line-height: normal;
  width: 304px;
}

/* Rotated image inside API card */
.api-card-img {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 453px;
  height: 349px;
  object-fit: contain;
  transform: rotate(-20.02deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}

/* Right sub-column: two stacked cards (400x531 with 24px gap inside) */
.business-cards-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.business-card--teal,
.business-card--dark-sm {
  flex: 1;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.business-card--teal {
  background: var(--color-teal);
}

.business-card--dark-sm {
  background: var(--color-secondary);
}

.business-card--teal .business-card-title,
.business-card--dark-sm .business-card-title {
  font-size: 28px;
  font-weight: 800;
}

.business-card--teal .business-card-desc,
.business-card--dark-sm .business-card-desc {
  width: 253px;
}

.business-card--dark-sm .learn-more-link {
  color: #fff;
}

.business-card-title {
  white-space: pre-line;
}


/* ═══════════════════════════════════════════════
   PICKUP LOCATIONS
   Frame 89 (270:953): y=3000, h=629
   Dark red bg photo; white card overlay on left
   ═══════════════════════════════════════════════ */
.pickup-section {
  position: relative;
  height: 629px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #9f1111;
}

.pickup-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.pickup-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: none;
  padding: 0 var(--page-gutter);
  height: 100%;
  margin: 0;
  width: 100%;
}

.pickup-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  width: 582px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.pickup-text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-label--dark .pickup-heading,
.pickup-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.64px;
  /* Brand manual: 110% line spacing for two/three-line headlines */
  line-height: var(--lh-heading);
  width: 461px;
  white-space: pre-line;
}

.pickup-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.4px;
  line-height: 1.4;
  width: 437px;
}

.pickup-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pickup-btns .btn {
  font-size: 20px;
  letter-spacing: -0.4px;
}


/* ═══════════════════════════════════════════════
   IMPORTANT NOTICES
   Frame 153 (270:992): y=3629, h=528
   bg: #F4F4F4, 3 cards
   ═══════════════════════════════════════════════ */
.notices-section {
  background: var(--color-bg-gray);
}

.notices-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: none;
  margin: 0;
  padding: var(--section-py) var(--page-gutter);
}

.notices-header {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.notices-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.64px;
  line-height: normal;
  white-space: nowrap;
}

.notices-grid {
  display: flex;
  gap: 32px;
}

.notice-card {
  flex: 0 1 calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
  background: #fff;
  border-radius: 16px;
  padding: 8px;
}

.notice-card-inner {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: normal;
}

.notice-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: var(--line-height-body);
  height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ═══════════════════════════════════════════════
   SUPPORT CENTER
   Frame 160 (270:920): y=4149, h=767
   bg: #FF7A00 (orange), 2 columns
   ═══════════════════════════════════════════════ */
.support-section {
  background: var(--color-primary);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--section-py) var(--page-gutter);
  min-height: 767px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Left column */
.support-left {
  width: 471px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.96px;
  line-height: normal;
  white-space: nowrap;
}

.support-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.4px;
  line-height: 1.4;
  min-height: 93px;
}

.support-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-contact-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.support-contact-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: normal;
}

.support-contact-text--link {
  text-decoration: underline;
}

/* Decorative retro phone image. The CMS source is a square PNG with roughly
   29% transparent padding below the phone. Translating the canvas by that
   amount places the phone's visible bottom edge exactly on the section line. */
.support-phone-img {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: max(-70px, calc((100vw - var(--container-max)) / 2 - 70px));
  width: 656px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(29.4%);
  pointer-events: none;
  z-index: 0;
}

/* Right column: FAQ + button */
.support-right {
  width: 733px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support-faq {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: #fff;
}

.faq-question span {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 240ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.support-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 280ms ease, opacity 220ms ease;
}

.support-faq-panel-inner {
  overflow: hidden;
}

.faq-item.is-open .support-faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer {
  padding: 0 0 12px 0;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.4;
}

.support-faq-btn {
  align-self: flex-start;
  font-size: 20px;
  letter-spacing: -0.4px;
}


/* ═══════════════════════════════════════════════
   SUSTAINABILITY
   Frame 172 (270:1016): y=4916, h=781
   bg: white section; inner green card
   ═══════════════════════════════════════════════ */
.sustainability-section {
  padding: var(--section-py) var(--wide-page-gutter);
  background: #fff;
}

.sustainability-card {
  background: var(--color-green);
  border-radius: 16px;
  width: 100%;
  height: 589px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-left: 72px;
}

/* Left side */
.sustainability-left {
  width: 511px;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 32px 0;
}

.sustainability-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sustainability-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: normal;
  white-space: nowrap;
  width: 265px;
}

.sustainability-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.4px;
  line-height: 1.4;
  width: 496px;
}

.sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sustainability-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.co2-badge {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  white-space: nowrap;
  flex-shrink: 0;
}

.co2-badge sub {
  font-size: var(--font-size-small);
  vertical-align: sub;
  line-height: 0;
}

.co2-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: normal;
  width: 460px;
}

/* Right side: image */
.sustainability-right {
  width: 779px;
  height: 100%;
  flex-shrink: 0;
  padding: 16px;
}

.sustainability-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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


/* ═══════════════════════════════════════════════
   NEWS SECTION
   Frame 169 (270:999): y=5697, h=734
   bg: #F4F4F4
   ═══════════════════════════════════════════════ */
.news-section {
  background: var(--color-bg-gray);
}

.news-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: none;
  margin: 0;
  padding: var(--section-py) var(--wide-page-gutter);
}

.news-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
  white-space: nowrap;
}

.news-grid {
  display: flex;
  gap: 32px;
  height: 429px;
}

/* Featured card: 704px wide (flex: 1 on left half) */
.news-card--featured {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 0;
  min-width: 0;
}

.news-card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.news-card--featured .news-card-img-wrap {
  flex: 1;
  border-radius: 12px;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured card text panel */
.news-card--featured .news-card-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.news-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: normal;
}

.news-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: var(--line-height-body);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right: 2 small cards stacked */
.news-small-grid {
  flex: 1;
  display: flex;
  gap: 32px;
  min-width: 0;
}

.news-card--small {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.news-card-img-wrap--small {
  height: 170px;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-card-body--small {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.news-card-title--small {
  font-size: 24px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-card-desc--small {
  font-size: 16px;
  height: auto;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-body--small .read-more-link {
  margin-top: auto;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   SOCIAL FEEDS
   Frame 111 (270:964): y=6423, h=982
   bg: white, cards with slight rotation
   ═══════════════════════════════════════════════ */
.social-section {
  background: #fff;
  padding: var(--section-py) 0;
  display: flex;
  flex-direction: column;
  gap: 61px;
  overflow: hidden;
}

.social-header {
  padding: 0 var(--wide-page-gutter);
}

.social-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
  white-space: nowrap;
}

/* Scrolling track for cards */
.social-cards-track {
  width: 100%;
  overflow: visible;
  padding-right: 80px;
}

.social-cards {
  display: flex;
  gap: 32px;
  padding-left: var(--wide-page-gutter);
  align-items: center;
}

.social-card {
  width: 353px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.social-card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 321.5 / 362.9;
  width: 100%;
  position: relative;
}

.social-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.32px;
  line-height: var(--line-height-body);
}

.social-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social-view-more {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  text-align: center;
  width: 100%;
}

.social-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-btns .btn {
  font-size: 21px;
  letter-spacing: -0.42px;
}

.social-btns .btn img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .news-heading {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .social-heading {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .services-card {
    height: auto;
  }

  .services-card-panel--dark,
  .services-card-panel--orange {
    width: 100%;
  }

  .services-quick-grid {
    grid-template-columns: 1fr;
  }

  .service-link-pill--send-primary {
    order: 1;
  }

  .service-link-pill--send-price {
    order: 2;
  }

  .service-link-pill--send-options {
    order: 3;
  }

  .service-link-pill--send-prep {
    order: 4;
  }

  .service-link-pill--receive-track {
    order: 1;
  }

  .service-link-pill--receive-manage {
    order: 2;
  }

  .service-link-pill--receive-pickup {
    order: 3;
  }

  .service-link-pill--receive-missed {
    order: 4;
  }

  .notices-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .notices-heading {
    white-space: normal;
  }

  .notices-grid {
    flex-direction: column;
  }

  .notice-card {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  .social-btns {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Corporate pages — page-specific editorial treatments */
.page-corporate {
  --corporate-accent: var(--color-primary);
  --corporate-soft: #fff0e4;
  --corporate-ink: #242124;
}

.page-corporate--sustainability {
  --corporate-accent: #5f825b;
  --corporate-soft: #edf4eb;
  --corporate-ink: #26382b;
}

.page-corporate--media {
  --corporate-accent: #e16f19;
  --corporate-soft: #f8ede5;
  --corporate-ink: #25211f;
}

.page-corporate .send-detail-content {
  background:
    radial-gradient(circle at 92% 7%, var(--corporate-soft), transparent 24%),
    linear-gradient(180deg, #f7f6f3 0%, #fbfaf8 100%);
}

/* Corporate accent no longer recolours the headline fineline — per the brand
   manual the fineline carries the headline colour. Status/indicator bars on
   cards keep the accent. */
.page-corporate .send-info-card::before {
  background: var(--corporate-accent);
}

.page-corporate .send-info-card__index,
.page-corporate .send-checklist__number {
  border-color: color-mix(in srgb, var(--corporate-accent) 36%, transparent);
  background: var(--corporate-soft);
  color: var(--corporate-ink);
}

.page-corporate .send-content-block--rich-text .send-rich-text p + p {
  margin-top: 18px;
}

.page-corporate--about-us .send-content-block--rich-text:first-child {
  grid-template-columns: minmax(250px, .58fr) minmax(0, 1.42fr);
  gap: 88px;
  padding: 72px;
  border: 0;
  border-left: 8px solid var(--corporate-accent);
  box-shadow: 0 24px 70px rgba(33, 30, 28, .08);
}

.page-corporate--about-us .send-content-block--cards:nth-child(3) {
  margin-top: 54px;
  padding: 64px;
  border-radius: 26px;
  background: var(--corporate-ink);
}

.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-detail-section-heading,
.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-detail-section-heading h2,
.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-detail-section-heading p,
.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-info-card h3,
.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-info-card .send-rich-text {
  color: #fff;
}

.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-info-card {
  min-height: 240px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .075);
  box-shadow: none;
}

.page-corporate--about-us .send-content-block--cards:nth-child(3) .send-info-card__index {
  background: var(--corporate-accent);
  color: #fff;
}

.page-corporate--careers .send-content-block--rich-text:first-child {
  border: 0;
  background:
    linear-gradient(120deg, rgba(245, 130, 32, .14), transparent 42%),
    var(--corporate-ink);
  box-shadow: 0 26px 70px rgba(33, 30, 28, .14);
}

.page-corporate--careers .send-content-block--rich-text:first-child h2,
.page-corporate--careers .send-content-block--rich-text:first-child .send-rich-text {
  color: #fff;
}

.page-corporate--careers .send-content-block--rich-text:first-child::after {
  border-color: rgba(245, 130, 32, .22);
}

.page-corporate--careers .send-checklist__item {
  border-top: 5px solid var(--corporate-accent);
  border-radius: 4px 4px 20px 20px;
}

.career-openings {
  position: relative;
  margin: 36px 0 84px;
  padding: 68px 64px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--corporate-ink);
  color: #fff;
  box-shadow: 0 26px 70px rgba(33, 30, 28, .14);
}

.career-openings::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(245, 130, 32, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.career-openings__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.career-openings__heading > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-openings__heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.career-openings__heading > p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.65;
}

.career-openings__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.career-opening-card {
  display: flex;
  min-height: 310px;
  padding: 32px;
  flex-direction: column;
  gap: 30px;
  border-radius: 18px;
  background: #fff;
  color: var(--color-secondary);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.career-opening-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  transform: translateY(-4px);
}

.career-opening-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-opening-card__meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--corporate-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.career-opening-card__body {
  flex: 1;
}

.career-opening-card__body h3 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.career-opening-card__body p {
  margin: 0;
  color: #55606b;
  line-height: 1.6;
}

.career-opening-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #e5e4e1;
  font-size: 14px;
}

.career-opening-card__footer strong {
  color: var(--color-primary);
}

.page-corporate--sustainability .send-content-block--rich-text:first-child {
  border: 0;
  border-radius: 48px 16px 48px 16px;
  background: #f7fbf6;
  box-shadow: 0 24px 64px rgba(42, 67, 46, .1);
}

.page-corporate--sustainability .send-content-block--rich-text::after {
  border-color: rgba(95, 130, 91, .13);
}

.page-corporate--sustainability .send-info-card {
  border-color: rgba(95, 130, 91, .28);
  border-radius: 28px 10px 28px 10px;
}

.page-corporate--sustainability .send-info-card:hover {
  border-color: var(--corporate-accent);
}

.page-corporate--sustainability .send-content-block--cta {
  background: var(--corporate-ink);
}

.page-corporate--media .send-content-block--rich-text:first-child {
  border: 0;
  background: var(--corporate-ink);
}

.page-corporate--media .send-content-block--rich-text:first-child h2,
.page-corporate--media .send-content-block--rich-text:first-child .send-rich-text {
  color: #fff;
}

.page-corporate--media .send-content-block--cards .send-info-card {
  min-height: 320px;
  padding-top: 44px;
  border: 0;
  background: #fff;
  box-shadow: 0 22px 58px rgba(56, 40, 29, .09);
}

/* Career detail */
.career-detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #242124;
  color: #fff;
}

.career-detail-hero::before,
.career-detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.career-detail-hero.has-image::before {
  background: var(--career-detail-image) center / cover no-repeat;
}

.career-detail-hero::after {
  background: linear-gradient(90deg, rgba(16, 15, 15, .92) 0%, rgba(16, 15, 15, .68) 52%, rgba(16, 15, 15, .28) 100%);
}

.career-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1180px;
  min-height: 620px;
  margin: 0 auto;
  padding: 170px 0 80px;
  justify-content: flex-end;
  flex-direction: column;
}

.career-detail-hero__back {
  position: absolute;
  top: 132px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.career-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.career-detail-hero__meta span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
  font-weight: 700;
}

.career-detail-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.career-detail-hero__inner > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.55;
}

.career-detail-content {
  padding: 104px var(--page-gutter);
  background: #f7f6f3;
}

.career-detail-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
}

.career-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.career-detail-copy section {
  padding-bottom: 62px;
  border-bottom: 1px solid #deddd9;
}

.career-detail-copy h2 {
  margin: 0 0 28px;
  color: var(--color-secondary);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.career-detail-rich-text {
  color: #46515c;
  font-size: 17px;
  line-height: 1.75;
}

.career-detail-rich-text ul,
.career-detail-rich-text ol {
  display: flex;
  margin: 22px 0 0;
  padding-left: 22px;
  flex-direction: column;
  gap: 12px;
}

.career-application-card {
  position: sticky;
  top: 110px;
  padding: 38px 34px;
  border-radius: 22px;
  background: #242124;
  color: #fff;
  box-shadow: 0 22px 54px rgba(25, 27, 31, .14);
}

.career-application-card__eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.career-application-card h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.career-application-card__deadline {
  display: flex;
  margin: 30px 0;
  padding: 20px 0;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.career-application-card__deadline span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.career-application-card .btn {
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1000px) {
  .page-corporate--about-us .send-content-block--rich-text:first-child {
    gap: 50px;
    padding: 54px;
  }

  .page-corporate--about-us .send-content-block--cards:nth-child(3) {
    padding: 48px;
  }

  .career-openings {
    padding: 52px 44px;
  }

  .career-detail-hero__inner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .career-detail-content__inner {
    grid-template-columns: 1fr 310px;
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .page-corporate--about-us .send-content-block--rich-text:first-child,
  .page-corporate--sustainability .send-content-block--rich-text:first-child {
    display: block;
    padding: 34px 26px;
    border-left-width: 5px;
    border-radius: 18px;
  }

  .page-corporate .send-content-block--rich-text:first-child h2 {
    margin-bottom: 28px;
  }

  .page-corporate--about-us .send-content-block--cards:nth-child(3) {
    margin-top: 28px;
    padding: 42px 20px;
    border-radius: 20px;
  }

  .career-openings {
    margin: 24px 0 64px;
    padding: 42px 20px;
    border-radius: 20px;
  }

  .career-openings__heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .career-openings__grid {
    grid-template-columns: 1fr;
  }

  .career-opening-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .career-opening-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-detail-hero,
  .career-detail-hero__inner {
    min-height: 560px;
  }

  .career-detail-hero__inner {
    padding: 160px 20px 58px;
  }

  .career-detail-hero__back {
    top: 118px;
  }

  .career-detail-hero h1 {
    font-size: 42px;
  }

  .career-detail-hero__inner > p {
    font-size: 17px;
  }

  .career-detail-content {
    padding: 64px 20px;
  }

  .career-detail-content__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .career-application-card {
    position: static;
  }
}

/* ==============================================
   Business-page styles
   Includes .hero--business, .hero--business-api, .fb-*, .erp-*, .map-*,
   .business-cards, .stats-*, .services-*, .api-cta-*, etc.
   ============================================== */

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  FOR BUSINESS PAGE                                                    ║
   ║  Figma frame 42:76 "Business Partner", 1728×6933                      ║
   ║  All selectors prefixed page-scoped to not affect homepage.           ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ─── HERO — Business Partner ────────────────────
   thumb.php 2 (85:247): 1728×750, dark gradient overlay
   Hero body content frame 14 (85:250): x=149, y=276, w=892, h=371
*/
.hero--business {
  min-height: 750px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Figma node 85:247 thumb.php 2:
   img w-full h-[153.6%] left-[-0.02%] top-[-29.37%] (non-uniform stretch)
   Container 1728×750 → image renders 1728×1152 stretched, offset top -220px.
   CSS equivalent: size 100%×153.6%, position 54.73% on Y axis
   (computed: -220 / (750-1152) = 54.73%, gives image top at exactly -220px). */
.hero--business::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 750px;
  background-image: url('../assets/business-hero-bg.png');
  background-image: image-set(
    url('../assets/business-hero-bg-1376.avif') type('image/avif'),
    url('../assets/business-hero-bg-1376.webp') type('image/webp'),
    url('../assets/business-hero-bg.png') type('image/png')
  );
  background-repeat: no-repeat;
  background-size: 100% 153.6%;
  background-position: 0 54.73%;
  z-index: 0;
}

.hero--business::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 750px;
  background: linear-gradient(179deg, rgba(0, 0, 0, 0.30) 1.4%, rgba(0, 0, 0, 0.70) 99.6%);
  z-index: 0;
  pointer-events: none;
}

/* nav is now positioned fixed outside hero — old .nav-header z-index override removed */

.fb-hero-body {
  position: relative;
  z-index: 1;
  /* Nav is now `position: fixed` outside hero, so hero starts at y=0.
     Figma puts hero content at y=276 from page top → padding-top = 276. */
  padding: 276px var(--frame-gutter-149) 0 var(--frame-gutter-149);
  flex: 1;
}

.fb-hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1428px;
}

.fb-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 649px;
}

.fb-hero-headline {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.fb-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  width: 609px;
}

.fb-hero-actions {
  display: flex;
  gap: 32px;
}


/* ─── SOLUTIONS CARDS (4-card row on light gray) ────────────────────
   Frame 251 (344:6793): 1728×323, bg #f4f4f4, px-150 py-10
   4 cards w=333 each, gap 32, white bg, rounded-16, p-24, gap-24 inside
*/
.solutions-cards-section {
  background: var(--color-bg-gray);
  padding: 10px var(--page-gutter);
  min-height: 323px;
  display: flex;
  align-items: center;
}

.solutions-cards-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.solutions-cards {
  display: flex;
  gap: 32px;
  width: 100%;
}

.solutions-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  overflow: hidden;
}

.solutions-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: normal;
}

.solutions-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ─── B2B PARTNER STATS ────────────────────
   Frame 52 (42:128): x=132, y=1191, w=1465, h=909
   Header: centered, gap 16, with two buttons (gap 24) at gap 72 below
   Stats grid: 3 columns, w=full, h=538, gap 32
*/
.stats-section {
  padding: 91px var(--frame-gutter-132) 0;
  background: #fff;
}

.stats-inner {
  /* Figma Frame 52 width = 1465 (not the homepage 1428); stat cards = (1465 - 64) / 3 = 467 each */
  max-width: 1465px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 91px;
  align-items: center;
}

.stats-header {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
  width: 100%;
}

.stats-heading-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.stats-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
  white-space: pre;
}

.stats-subheading {
  font-size: 24px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.48px;
  line-height: normal;
  text-align: center;
  width: 909px;
  max-width: 100%;
}

.stats-actions {
  display: flex;
  gap: 24px;
}

.stats-grid {
  display: flex;
  gap: 32px;
  height: 538px;
  width: 100%;
}

.stats-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  min-width: 0;
}

.stat-card {
  flex: 1;
  border-radius: 16px;
  min-height: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.stat-card--teal {
  background: var(--color-teal);
  padding: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-card--dark {
  background: var(--color-secondary);
}

.stat-card--orange-boxes {
  background: var(--color-primary);
  padding-top: 64px;
  flex: 1;
  align-items: center;
  gap: 16px;
}

.stat-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
  white-space: nowrap;
}

.stat-card-desc {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  line-height: normal;
  width: 253px;
}

.stat-card--number {
  align-items: center;
  justify-content: center;
  color: #fff;
}

.stat-card-label-top,
.stat-card-label-bottom {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: normal;
  text-align: center;
  width: 235px;
  max-width: 100%;
}

.stat-card-label-bottom {
  width: 191px;
}

.stat-card-number {
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.44px;
  line-height: normal;
  white-space: nowrap;
}

.stat-card-number--md {
  font-size: 42px;
  letter-spacing: -0.84px;
}

.stat-card--orange-boxes .stat-card-label-top,
.stat-card--orange-boxes .stat-card-label-bottom,
.stat-card--orange-boxes .stat-card-number {
  color: #fff;
}

.stat-card-boxes-img {
  position: absolute;
  left: 118px;
  top: 183px;
  width: 447px;
  height: 612px;
  object-fit: cover;
  pointer-events: none;
  max-width: none;
}


/* ─── SERVICES OVERVIEW (Pregled usluga) ────────────────────
   Frame 58 (43:263): full-width container with p=24, inner card bg #f4f4f4,
   rounded 24, px=128 py=96, gap 72
   2 columns of 3 service items
*/
.services-list-section {
  padding: 24px var(--frame-gutter-24);
  background: #fff;
}

.services-list-card {
  background: var(--color-bg-gray);
  border-radius: 24px;
  padding: 96px 128px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}

.services-list-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
  text-align: center;
  width: 100%;
}

.services-list-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.services-list-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 666px;
  max-width: 100%;
}

.service-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 178px;
}

.service-list-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.service-list-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.service-list-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: -0.56px;
  line-height: normal;
}

.service-list-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.42px;
  line-height: normal;
}

.service-list-price {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.42px;
  line-height: normal;
}


/* ─── ERP SISTEMI ────────────────────
   Frame 80 (339:3425): rounded-24, bg #241F20, p=128, gap 168
   Inner: left col w=728 (text + 3 pills, gap 48), right col flex-1 (Prednosti list)
   Bottom: partner logos absolute strip, gap 96
*/
.erp-section {
  padding: 0 var(--frame-gutter-64);
  background: #fff;
}

.erp-card {
  background: var(--color-secondary);
  border-radius: 24px;
  padding: 128px;
  display: flex;
  flex-direction: column;
  gap: 168px;
  position: relative;
  overflow: hidden;
  min-height: 963px;
  /* Figma Frame 339:3425 height; ensures absolute partners-strip is fully visible */
}

.erp-content {
  display: flex;
  gap: 121px;
  align-items: flex-start;
}

.erp-left {
  width: 728px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.erp-text {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.erp-heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.96px;
  line-height: normal;
}

.erp-desc {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.48px;
  line-height: normal;
}

.erp-link,
.erp-emph {
  color: var(--color-primary);
  font-weight: 700;
}

.erp-link {
  text-decoration: underline;
  text-underline-position: from-font;
}

.erp-pills {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 484px;
  max-width: 100%;
}

/* Pill variant for ERP: 24px text inside, 32x32 icon */
.service-link-pill--erp {
  padding: 18px 16px;
}

.service-link-pill--erp .service-link-pill-left span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
}

.service-link-pill--erp .service-link-pill-left img {
  width: 32px;
  height: 32px;
}

.service-link-pill--erp>img:last-child {
  width: 24px;
  height: 24px;
}

.erp-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-end;
  height: 391px;
}

.erp-prednosti-title {
  font-size: 21px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.42px;
  line-height: normal;
}

.erp-prednosti {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.erp-prednosti-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.erp-prednosti-item img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.erp-prednosti-item span {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
}

/* Figma Frame 339:3443 — absolute within ERP card (overflow:hidden on card clips overhang).
   left=-40, top=817, w=1640, h=71; logos flex with 96px gap.
   First logo's left 40px is clipped; later logos overflow strip width and are clipped
   by the parent card's overflow:hidden, matching Figma's marquee-style design. */
.erp-partners-strip {
  position: absolute;
  left: -40px;
  top: 817px;
  width: 1640px;
  height: 71px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.erp-partner-logo {
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* Per-logo dimensions match Figma metadata (varying due to asset aspect ratios) */
.erp-partner-logo:nth-child(1) {
  width: 319px;
  height: 62px;
}

.erp-partner-logo:nth-child(2) {
  width: 264px;
  height: 62px;
}

.erp-partner-logo:nth-child(3) {
  width: 265px;
  height: 64px;
}

.erp-partner-logo:nth-child(4) {
  width: 307px;
  height: 71px;
}

.erp-partner-logo:nth-child(5) {
  width: 320px;
  height: 62.7px;
}

.erp-partner-logo:nth-child(6) {
  width: 264px;
  height: 62px;
}


/* ─── DISTRIBUTION WAREHOUSE MAP ────────────────────
   Figma Frame 71 (45:3593): x=132, y=4586, w=1766, h=622
   Frame extends 38px PAST page right edge (1766 > 1728-132*2=1596 available).
   Left: Frame 70 text at (0, 16, 612, 606)
   Right: slovenia_dots 1 at (666, -19, 1100, 641) — overflows right ~170px
   Section overflow:hidden clips the right map overhang.
*/
.map-section {
  padding: 96px 0 96px var(--frame-gutter-132);
  background: #fff;
  overflow: hidden;
  position: relative;
}

.map-inner {
  position: relative;
  min-height: 622px;
  max-width: 1766px;
}

.map-text {
  width: 612px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.map-text-block {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.map-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
}

.map-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.42px;
  line-height: normal;
  width: 536px;
  max-width: 100%;
}

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.map-illustration {
  position: absolute;
  left: 666px;
  top: -19px;
  width: 1100px;
  height: 641px;
  pointer-events: none;
}

.map-illustration-img {
  width: 1100px;
  height: 641px;
  max-width: none;
  display: block;
}


/* Active page indicator handled by .site-nav__link[aria-current="page"] in main nav block above */


/* ─── PAGE-SCOPED BUTTON OVERRIDES ────────────────────
   Figma For Business buttons use py-16 (vs homepage's py-12).
   Hero/Map buttons text 20px (vs Stats which uses 21px from default .btn--lg).
*/
.page-business .btn--lg {
  padding: 16px 24px;
}

.page-business .fb-hero-actions .btn,
.page-business .map-actions .btn {
  font-size: 20px;
  letter-spacing: -0.4px;
}


/* API subpage */
.hero--business-api::before {
  background-image: url('../assets/fb-api-hero-bg.png');
  background-image: image-set(
    url('../assets/fb-api-hero-bg-2733.avif') type('image/avif'),
    url('../assets/fb-api-hero-bg-2733.webp') type('image/webp'),
    url('../assets/fb-api-hero-bg.png') type('image/png')
  );
  background-size: 103.24% 99.9%;
  background-position: 0.01% 0.05%;
}

.hero--business-api::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 23.267%, rgba(0, 0, 0, 0.7) 101%);
}

.fb-api-hero-body {
  position: relative;
  z-index: 1;
  min-height: 750px;
  padding: 392px var(--frame-gutter-153) 118px;
}

.fb-api-hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1051px;
}

.fb-api-hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}

.fb-api-hero-overline {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
}

.fb-api-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.fb-api-hero-actions {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.page-business-api .fb-api-hero-actions .btn {
  min-width: 215px;
  font-size: 20px;
  letter-spacing: -0.4px;
  justify-content: space-between;
}

.fb-api-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 351px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: normal;
  text-decoration: none;
}

.fb-api-btn img {
  width: 24px;
  height: 24px;
}

.api-capabilities-section {
  padding: 134px var(--frame-gutter-132) 0;
  background: #fff;
}

.api-capabilities-inner {
  width: 100%;
  max-width: 1465px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 91px;
  align-items: center;
}

.api-capabilities-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.api-capabilities-title {
  width: 974px;
  max-width: 100%;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
}

.api-capabilities-desc {
  width: 909px;
  max-width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.48px;
  line-height: normal;
}

.api-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.api-feature-card {
  position: relative;
  min-height: 559px;
  padding: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.api-feature-card--dark {
  background: var(--color-secondary);
}

.api-feature-card--orange {
  background: var(--color-primary);
}

.api-feature-card-title {
  position: relative;
  z-index: 1;
  width: 296px;
  max-width: 100%;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.56px;
  line-height: normal;
}

.api-feature-card-desc {
  position: relative;
  z-index: 1;
  width: 334px;
  max-width: 100%;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.4px;
  line-height: normal;
}

.api-feature-card-art {
  position: absolute;
  left: 139px;
  top: 163px;
  width: 447px;
  height: 612px;
}

.api-feature-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.api-feature-card-art--labels {
  overflow: hidden;
}

.api-feature-card-art--labels .api-feature-card-image {
  inset: auto;
  left: -0.1%;
  top: 25.73%;
  width: 100%;
  height: 48.69%;
}

.api-feature-card-art--status {
  overflow: hidden;
}

.api-feature-card-art--status .api-feature-card-image {
  inset: auto;
  left: -24.91%;
  top: 7.88%;
  width: 151.13%;
  height: 73.59%;
}

.api-advantages-section {
  padding-top: 135px;
}

.api-advantages-card {
  padding: 96px 128px;
}

.api-advantages-heading {
  width: 1424px;
  max-width: 100%;
}

.api-advantages-col {
  width: 666px;
  max-width: 100%;
  gap: 48px;
}

.api-advantages-item {
  min-height: 137px;
}

.api-advantages-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: -0.56px;
  line-height: normal;
  white-space: normal;
}

.api-advantages-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.42px;
  line-height: normal;
}

.page-business-api .erp-section {
  padding: 135px var(--frame-gutter-64) 0;
}

.page-business-api .erp-card {
  min-height: 891px;
}

.page-business-api .erp-partners-strip {
  top: 712px;
}

.api-cta-section {
  min-height: 589px;
  padding: 154px var(--frame-gutter-10);
  background: #fff;
}

.api-cta-inner {
  width: 100%;
  max-width: 1708px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}

.api-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.api-cta-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.96px;
  line-height: normal;
}

.api-cta-desc {
  width: 909px;
  max-width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.48px;
  line-height: normal;
}

.api-cta-actions {
  display: flex;
  gap: 24px;
}

.page-business-api .api-cta-actions .btn {
  font-size: 21px;
  letter-spacing: -0.42px;
}


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  FOR BUSINESS PAGE — RESPONSIVE                                       ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
@media (max-width: 1200px) {
  .hero--business {
    min-height: 600px;
  }

  .hero--business::before,
  .hero--business::after {
    height: 100%;
  }

  /* padding-top accounts for fixed nav (102px) + ~40 visual breathing */
  .fb-hero-body {
    padding: 142px 40px 40px;
  }

  .fb-hero-headline {
    font-size: 44px;
  }

  .fb-hero-subtitle {
    font-size: 18px;
    width: auto;
  }

  .fb-hero-text {
    width: 100%;
    max-width: 700px;
  }

  .fb-hero-actions {
    flex-wrap: wrap;
  }

  .solutions-cards-section {
    padding: 40px;
    min-height: auto;
  }

  .solutions-cards {
    flex-wrap: wrap;
  }

  .solutions-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 240px;
  }

  .stats-section {
    padding: 64px 40px 0;
  }

  .stats-heading {
    white-space: normal;
    text-align: center;
    font-size: 36px;
  }

  .stats-subheading {
    width: auto;
    font-size: 18px;
  }

  .stats-grid {
    flex-direction: column;
    height: auto;
    gap: 24px;
  }

  .stats-col {
    flex-direction: row;
    gap: 24px;
    height: auto;
  }

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

  .stat-card-boxes-img {
    left: auto;
    right: -50px;
    top: 50%;
    width: 320px;
    height: auto;
  }

  .services-list-section {
    padding: 16px;
  }

  .services-list-card {
    padding: 64px 40px;
    gap: 48px;
  }

  .services-list-heading {
    font-size: 36px;
  }

  .services-list-grid {
    flex-direction: column;
    gap: 48px;
  }

  .services-list-col {
    width: 100%;
    gap: 32px;
  }

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

  .service-list-title {
    font-size: 22px;
    white-space: normal;
  }

  .service-list-desc {
    font-size: 16px;
  }

  .service-list-price {
    font-size: 16px;
  }

  .erp-section {
    padding: 0 16px;
  }

  .erp-card {
    padding: 64px 40px;
    gap: 48px;
    min-height: auto;
    /* override desktop min-height for natural flow */
  }

  .erp-content {
    flex-direction: column;
    gap: 48px;
  }

  .erp-left,
  .erp-right {
    width: 100%;
    height: auto;
  }

  .erp-pills {
    width: 100%;
  }

  .erp-heading {
    font-size: 36px;
  }

  .erp-desc {
    font-size: 18px;
  }

  .erp-prednosti-item span {
    font-size: 20px;
  }

  /* Restore flex flow at responsive — absolute positioning would break with cards stacked */
  .erp-partners-strip {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .erp-partner-logo,
  .erp-partner-logo:nth-child(1),
  .erp-partner-logo:nth-child(2),
  .erp-partner-logo:nth-child(3),
  .erp-partner-logo:nth-child(4),
  .erp-partner-logo:nth-child(5),
  .erp-partner-logo:nth-child(6) {
    width: auto;
    height: 42px;
  }

  .map-section {
    padding: 64px 40px;
  }

  .map-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .map-text {
    width: 100%;
    gap: 32px;
    padding-top: 0;
  }

  .map-heading {
    font-size: 36px;
  }

  .map-desc {
    font-size: 18px;
    width: auto;
  }

  .map-illustration {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1100 / 641;
  }

  .map-illustration-img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {

  /* Mobile: header wraps to ~auto height, allow ~120 buffer */
  .fb-hero-body {
    padding: 120px 20px 24px;
  }

  .fb-hero-headline {
    font-size: 32px;
  }

  .fb-hero-subtitle {
    font-size: 16px;
  }

  .fb-hero-actions .btn {
    font-size: 16px;
  }

  .solutions-cards-section {
    padding: 32px 20px;
  }

  .solutions-cards {
    flex-direction: column;
    gap: 16px;
  }

  .solutions-card {
    flex: 1 1 100%;
  }

  .stats-section {
    padding: 48px 20px 0;
  }

  .stats-heading {
    font-size: 28px;
  }

  .stats-actions {
    flex-direction: column;
    width: 100%;
  }

  .stats-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .stats-col {
    flex-direction: column;
  }

  .services-list-section {
    padding: 8px;
  }

  .services-list-card {
    padding: 40px 20px;
  }

  .services-list-heading {
    font-size: 28px;
  }

  .service-list-title {
    font-size: 20px;
  }

  .erp-section {
    padding: 0 8px;
  }

  .erp-card {
    padding: 40px 20px;
  }

  .erp-heading {
    font-size: 28px;
  }

  .erp-desc {
    font-size: 16px;
  }

  .erp-prednosti-item span {
    font-size: 18px;
  }

  .erp-prednosti-item img,
  .service-list-icon {
    width: 28px;
    height: 28px;
  }

  .map-section {
    padding: 48px 20px;
  }

  .map-heading {
    font-size: 28px;
  }

  .map-actions {
    width: 100%;
  }

  .map-actions .btn {
    width: 100%;
    justify-content: space-between;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — laptop / compact desktop
   Keep the 1728px composition fluid without scaling the entire document.
   ═══════════════════════════════════════════════ */
@media (max-width: 1440px) {
  :root {
    --section-px: 64px;
    --wide-section-px: 64px;
    --footer-section-px: 64px;
    --section-py: 80px;
  }

  .hero-body {
    gap: 32px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero::before {
    background-size: cover;
    background-position: center;
  }

  .hero-left {
    min-width: 0;
  }

  .hero-quick-links {
    gap: 20px;
  }

  .hero-quick-link {
    width: calc((100% - 20px) / 2);
    min-width: 0;
  }

  .hero-quick-link-inner {
    min-width: 0;
  }

  .hero-quick-link-inner span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .track-trace {
    width: 520px;
  }

  .track-trace-inner {
    width: 100%;
    padding: 0 32px;
  }

  .business-solutions .section-inner {
    gap: 48px;
  }

  .business-left {
    width: min(36%, 400px);
  }

  .business-heading,
  .business-desc {
    width: auto;
  }

  .business-cards {
    width: auto;
    min-width: 0;
    flex: 1;
  }

  .business-card--api,
  .business-cards-stack {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }

  .business-card-text,
  .business-card-desc,
  .business-card--teal .business-card-desc,
  .business-card--dark-sm .business-card-desc {
    width: auto;
  }

  .support-section {
    gap: 48px;
  }

  .support-left {
    width: min(38%, 420px);
  }

  .support-heading {
    white-space: normal;
  }

  .support-right {
    width: auto;
    min-width: 0;
    flex: 1;
  }

  .sustainability-card {
    gap: 32px;
    padding-left: 48px;
  }

  .sustainability-left {
    width: 44%;
    min-width: 0;
  }

  .sustainability-desc,
  .co2-text {
    width: auto;
  }

  .sustainability-right {
    width: auto;
    min-width: 0;
    flex: 1;
  }

  .news-card-title--small {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — tablet / small desktop
   ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root {
    --section-px: 40px;
    --wide-section-px: 40px;
    --footer-section-px: 40px;
    --section-py: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero-body {
    flex-direction: column;
    align-items: flex-start;
    /* padding-top clears the fixed site-header (102px) + breathing room */
    padding: 142px 40px 40px;
    gap: 32px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-headline {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .track-trace {
    width: 100%;
    height: auto;
  }

  .track-trace-inner {
    width: 100%;
    padding: 32px;
  }

  .site-header__inner {
    padding: 20px 24px;
  }

  .site-header__left {
    gap: 16px;
  }

  .site-logo,
  .site-logo__icon {
    width: 112px;
    height: 36px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav__link {
    font-size: 16px;
    height: auto;
    padding: 0;
    border-bottom: none;
  }

  .site-header__right {
    gap: 12px;
  }

  .site-header__tracker-label--compact {
    display: none;
  }

  .site-header__cta--tracker {
    padding-inline: 16px;
  }

  .site-header--receive-open .site-header__cta--tracker,
  .site-header--business-open .site-header__cta--tracker {
    width: 300px;
  }

  .site-nav__dropdown {
    padding: 0 40px 24px;
  }

  .site-nav__dropdown-inner {
    flex-direction: column;
    padding-left: 0;
    gap: 24px;
  }

  .site-nav__dropdown-feature {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

  .site-nav__dropdown-feature-img,
  .site-nav__dropdown-feature-text {
    width: 100%;
    height: auto;
  }

  .site-nav__dropdown-scrim {
    top: 100vh;
  }

  /* effectively hide scrim on smaller viewports */

  .services-card {
    height: auto;
    flex-direction: column;
  }

  .services-card-panel--dark,
  .services-card-panel--orange {
    width: 100%;
    border-radius: 16px;
  }

  .services-card-bg-img {
    display: none;
  }

  .business-solutions .section-inner {
    flex-direction: column;
    height: auto;
  }

  .business-left {
    width: 100%;
    gap: 32px;
  }

  .business-cards {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .business-card--api {
    width: 100%;
    height: 400px;
  }

  .business-cards-stack {
    flex-direction: row;
  }

  .business-card--teal,
  .business-card--dark-sm {
    min-height: 300px;
  }

  .pickup-card {
    width: 100%;
    max-width: 500px;
  }

  .support-section {
    min-height: auto;
    flex-direction: column;
    gap: 48px;
  }

  .support-left,
  .support-right {
    width: 100%;
  }

  .support-phone-img {
    display: none;
  }

  .pickup-heading {
    width: auto;
    font-size: 28px;
  }

  .pickup-desc {
    width: auto;
    font-size: 18px;
  }

  .sustainability-card {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 40px;
    align-items: stretch;
  }

  .sustainability-left {
    width: 100%;
    padding: 0;
  }

  .sustainability-right {
    width: 100%;
    height: 400px;
  }

  .sustainability-desc {
    width: auto;
  }

  .co2-text {
    width: auto;
  }

  .news-grid {
    flex-direction: column;
    height: auto;
  }

  .news-card--featured {
    flex-direction: column;
  }

  .news-card--featured .news-card-img-wrap {
    height: 200px;
  }

  .news-small-grid {
    flex-direction: row;
  }

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

  .footer-nav-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col--contact {
    width: 100%;
    padding: 24px;
  }

  .footer-contact-desc {
    width: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .site-header__inner {
    padding-inline: 20px;
  }

  .site-logo,
  .site-logo__icon {
    width: 96px;
    height: 32px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-header__cta--contact span {
    display: none;
  }

  .site-header__cta--contact {
    padding-inline: 16px;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 375px (Mobile)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-px: 20px;
    --wide-section-px: 20px;
    --footer-section-px: 20px;
    --section-py: 48px;
  }

  .site-header__inner {
    padding: 16px 20px;
    height: auto;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .site-header__left {
    gap: 8px;
  }

  .site-nav {
    display: none;
  }

  .site-mobile-navigation {
    display: block;
  }

  .site-mobile-navigation__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-secondary);
    cursor: pointer;
    list-style: none;
  }

  .site-mobile-navigation__toggle::-webkit-details-marker {
    display: none;
  }

  .site-mobile-navigation__toggle:focus-visible,
  .site-mobile-navigation__group-toggle:focus-visible,
  .site-mobile-navigation__link:focus-visible,
  .site-mobile-navigation__language:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
  }

  .site-mobile-navigation__toggle-icon,
  .site-mobile-navigation__toggle-icon::before,
  .site-mobile-navigation__toggle-icon::after {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .site-mobile-navigation__toggle-icon {
    position: relative;
  }

  .site-mobile-navigation__toggle-icon::before,
  .site-mobile-navigation__toggle-icon::after {
    position: absolute;
    left: 0;
    content: '';
  }

  .site-mobile-navigation__toggle-icon::before {
    top: -6px;
  }

  .site-mobile-navigation__toggle-icon::after {
    top: 6px;
  }

  .site-mobile-navigation[open] .site-mobile-navigation__toggle-icon {
    background: transparent;
  }

  .site-mobile-navigation[open] .site-mobile-navigation__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-mobile-navigation[open] .site-mobile-navigation__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-mobile-navigation__panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 20px 28px;
    border-top: 1px solid rgba(36, 31, 32, .1);
    background: #fff;
    color: var(--color-secondary);
    box-shadow: 0 18px 36px rgba(36, 31, 32, .18);
  }

  .site-mobile-navigation:not([open]) > .site-mobile-navigation__panel {
    display: none;
  }

  .site-mobile-navigation__nav {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
  }

  .site-mobile-navigation__group {
    border-bottom: 1px solid rgba(36, 31, 32, .12);
  }

  .site-mobile-navigation__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 10px 4px;
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
  }

  .site-mobile-navigation__group-toggle::-webkit-details-marker {
    display: none;
  }

  .site-mobile-navigation__group-toggle.is-current {
    color: var(--color-primary);
  }

  .site-mobile-navigation__chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
  }

  .site-mobile-navigation__group[open] > .site-mobile-navigation__group-toggle .site-mobile-navigation__chevron {
    transform: translateY(2px) rotate(225deg);
  }

  .site-mobile-navigation__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 0 12px 12px;
  }

  .site-mobile-navigation__group:not([open]) > .site-mobile-navigation__links {
    display: none;
  }

  .site-mobile-navigation__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
  }

  .site-mobile-navigation__link[aria-current="page"] {
    background: rgba(255, 122, 0, .12);
    color: #9c4600;
  }

  .site-mobile-navigation__languages {
    padding-top: 20px;
  }

  .site-mobile-navigation__languages-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .site-mobile-navigation__language-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-mobile-navigation__language {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid rgba(36, 31, 32, .16);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
  }

  .site-mobile-navigation__language.is-active {
    border-color: var(--color-primary);
    color: #9c4600;
  }

  .site-header__cta--contact {
    font-size: 13px;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    gap: 8px;
  }

  .site-header__cta--contact span {
    display: none;
  }

  .site-header__cta--tracker {
    font-size: 13px;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
  }

  .site-header__tracker-submit {
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .language-switcher__trigger {
    min-width: 48px;
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .language-switcher__menu {
    width: 154px;
  }

  .language-switcher {
    display: none;
  }

  .site-logo__icon {
    width: 90px;
    height: 30px;
  }

  .site-logo {
    width: 90px;
    height: 30px;
  }

  .site-header__right {
    gap: 8px;
  }

  .site-nav__dropdown {
    display: none;
  }

  /* dropdowns hidden on mobile */

  .hero-body {
    padding: 120px 20px 24px;
  }

  .hero-headline {
    font-size: 32px;
  }

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

  .hero-quick-links {
    flex-direction: column;
    gap: 16px;
  }

  .hero-quick-link {
    width: 100%;
  }

  .track-trace {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .track-trace-inner {
    width: 100%;
    padding: 24px 20px;
    gap: 20px;
  }

  .track-trace-header {
    gap: 12px;
  }

  .track-trace-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .track-trace-desc {
    width: auto;
  }

  .services-card {
    height: auto;
  }

  .services-card-panel--dark,
  .services-card-panel--orange {
    padding: 24px;
  }

  .services-card-top .section-label h2 {
    font-size: 24px;
  }

  .services-quick-row {
    flex-direction: column;
  }

  .business-heading {
    font-size: 32px;
    width: auto;
  }

  .business-desc {
    font-size: 16px;
    width: auto;
  }

  .business-btns .btn {
    font-size: 16px;
  }

  .business-cards {
    flex-direction: column;
  }

  .business-card--api {
    height: 350px;
  }

  .business-cards-stack {
    flex-direction: column;
  }

  .pickup-section {
    height: auto;
    min-height: 500px;
  }

  .pickup-card {
    padding: 24px;
    width: 100%;
  }

  .support-section {
    flex-direction: column;
    gap: 40px;
  }

  .support-left {
    width: 100%;
  }

  .support-right {
    width: 100%;
  }

  .support-heading {
    font-size: 36px;
  }

  .support-phone-img {
    display: none;
  }

  .sustainability-card {
    padding: 24px;
  }

  .sustainability-heading {
    font-size: 32px;
    width: auto;
  }

  .sustainability-right {
    height: 250px;
  }

  .news-small-grid {
    flex-direction: column;
  }

  .social-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .social-card {
    width: 100%;
    transform: none !important;
  }

  .site-footer {
    padding: 40px 20px;
  }

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

  .footer-nav-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 24px;
  }

  .footer-col {
    padding: 16px 0;
  }

  .footer-col--contact {
    width: 100%;
    padding: 24px;
    margin-top: 24px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-legal {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .footer-legal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e3e3;
    font-size: 15px;
  }

  .footer-legal-link::after {
    content: '\203A';
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1;
  }

  .footer-legal-link+.footer-legal-link {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-bg-decoration {
    display: none;
  }
}

@media (max-width: 1200px) {
  .fb-api-hero-body {
    min-height: auto;
    padding: 142px 40px 48px;
  }

  .fb-api-hero-title {
    font-size: 44px;
  }

  .fb-api-hero-overline {
    font-size: 20px;
  }

  .fb-api-hero-actions {
    flex-wrap: wrap;
  }

  .fb-api-btn {
    width: 351px;
    max-width: 100%;
  }

  .api-capabilities-section {
    padding: 80px 40px 0;
  }

  .api-capabilities-inner {
    gap: 56px;
  }

  .api-capabilities-title {
    width: auto;
    font-size: 36px;
  }

  .api-capabilities-desc {
    width: auto;
    font-size: 18px;
  }

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

  .api-capabilities-grid .api-feature-card:last-child {
    grid-column: 1 / -1;
  }

  .api-feature-card {
    min-height: 440px;
  }

  .api-feature-card-art {
    left: auto;
    right: -36px;
    top: 170px;
    width: 320px;
    height: 440px;
  }

  .api-advantages-section {
    padding: 80px 16px 0;
  }

  .api-advantages-card {
    padding: 64px 40px;
    gap: 48px;
  }

  .api-advantages-heading {
    font-size: 36px;
  }

  .api-advantages-grid {
    flex-direction: column;
    gap: 40px;
  }

  .api-advantages-col {
    width: 100%;
    gap: 32px;
  }

  .api-advantages-item {
    min-height: 0;
  }

  .api-advantages-title {
    font-size: 22px;
  }

  .api-advantages-desc {
    font-size: 16px;
  }

  .page-business-api .erp-section {
    padding: 80px 16px 0;
  }

  .page-business-api .erp-card {
    min-height: auto;
  }

  .api-cta-section {
    min-height: auto;
    padding: 120px 20px;
  }

  .api-cta-title {
    font-size: 36px;
  }

  .api-cta-desc {
    width: auto;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .fb-api-hero-body {
    padding: 120px 20px 24px;
  }

  .fb-api-hero-title {
    font-size: 32px;
  }

  .fb-api-hero-overline {
    font-size: 18px;
  }

  .fb-api-hero-actions,
  .api-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .page-business-api .fb-api-hero-actions .btn,
  .fb-api-btn,
  .page-business-api .api-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .api-capabilities-section {
    padding: 56px 20px 0;
  }

  .api-capabilities-title {
    font-size: 28px;
  }

  .api-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .api-capabilities-grid .api-feature-card:last-child {
    grid-column: auto;
  }

  .api-feature-card {
    min-height: 360px;
    padding: 24px;
  }

  .api-feature-card-title {
    width: auto;
    font-size: 24px;
  }

  .api-feature-card-desc {
    width: auto;
    font-size: 16px;
  }

  .api-feature-card-art {
    right: -28px;
    top: 160px;
    width: 240px;
    height: 330px;
  }

  .api-advantages-card {
    padding: 40px 20px;
  }

  .api-advantages-heading {
    font-size: 28px;
  }

  .api-advantages-title {
    font-size: 20px;
  }

  .api-cta-section {
    padding: 96px 20px;
  }
}

/* ==============================================
   Send-page styles and responsive rules
   Includes .hero--send, .send-*, page-scoped .page-send overrides.
   ============================================== */

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SEND PAGE                                                             ║
   ║  Figma frame 372:1596 "Business Partner" — Send subpage, 1728×5628.    ║
   ║  Reuses .hero--business, .solutions-cards-section, .stats-section,     ║
   ║  .pickup-section, .api-cta-section; adds Send-only sections below.     ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ─── HERO — Send page ──────────────────────────────────────
   Figma Rectangle 4 (372:4437): x=-28, y=-32, w=1756, h=805 (overflows page on top + sides).
   Inner image inside the clip box: w=100.82%, h=100.8%, left=1.46% (=25.6px), top=-0.49% (=-3.94px).
   Gradient overlay: linear-gradient(1.17deg, rgba(0,0,0,0.3) 5.08%, rgba(0,0,0,0.7) 94.95%).

   To match exactly, override the .hero--business::before geometry to the
   Rectangle-4 container, and use background-position pixel values for the
   precise (25.6, -3.94) inner image offset. */
.hero--send::before {
  top: -32px;
  left: -28px;
  right: auto;
  width: calc(100% + 56px);
  /* Figma 1756 = 1728 + 28×2 overflow */
  height: 805px;
  background-image: url('../assets/send-hero-bg.png');
  background-image: image-set(
    url('../assets/send-hero-bg-2623.avif') type('image/avif'),
    url('../assets/send-hero-bg-2623.webp') type('image/webp'),
    url('../assets/send-hero-bg.png') type('image/png')
  );
  background-repeat: no-repeat;
  background-size: 100.82% 100.8%;
  background-position: 25.6px -3.94px;
}

.hero--send.has-custom-hero::before {
  background-image: var(--send-overview-hero-image);
  background-size: cover;
  background-position: center;
}

/* Gradient overlay must cover the same Rectangle-4 area + use Figma's stops/angle.
   Figma exports CSS `linear-gradient(1.17533deg, ...)` literally — 1.17deg in CSS
   means gradient flows bottom-up with a slight tilt, so 0.3 is near bottom
   and 0.7 is near top (darker at top — matches the Send hero's headline placement). */
.hero--send::after {
  top: -32px;
  left: -28px;
  right: auto;
  width: calc(100% + 56px);
  height: 805px;
  background: linear-gradient(1.17deg, rgba(0, 0, 0, 0.3) 5.08%, rgba(0, 0, 0, 0.7) 94.95%);
}

/* Hero content frame: x=153, y=259 (Figma) — top 259 means 157 below the 102 nav */
.send-hero-body {
  position: relative;
  z-index: 1;
  padding: 259px var(--frame-gutter-153) 0;
  flex: 1;
}

.send-hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1428px;
}

.send-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 727px;
}

.send-hero-headline {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.send-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  width: 686px;
}

.send-hero-actions {
  display: flex;
  gap: 32px;
}

/* Send hero buttons match Figma 20px (same convention as .fb-hero-actions) */
.page-business .send-hero-actions .btn {
  font-size: 20px;
  letter-spacing: -0.4px;
}


/* ─── SOLUTIONS CARDS variation: Send page uses py-48 instead of py-10
       Figma Frame 251 has py=48 (372:2820 inner Frame 250 y=48 vs y=63 on FB). */
.solutions-cards-section--send {
  padding-top: 48px;
  padding-bottom: 48px;
  min-height: 293px;
}

.send-overview-intro {
  width: min(900px, 100%);
  margin: 0 auto 36px;
  color: rgba(36, 31, 32, .76);
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
}

.send-overview-intro > :first-child {
  margin-top: 0;
}

.send-overview-intro > :last-child {
  margin-bottom: 0;
}


/* ─── SEND STEPS — Figma 372:1618
       rounded-24 container, px-150 py-96, gap-72, items-center
       Title 40px Bold centered, 2 columns of 2 step cards, col-gap 72, row-gap 48 */
.send-steps-section {
  padding: 0 max(0px, calc((100vw - var(--container-max)) / 2));
  background: #fff;
}

.send-steps-inner {
  background: #fff;
  border-radius: 24px;
  padding: 96px 150px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
  overflow: hidden;
}

.send-steps-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
  text-align: center;
  width: 100%;
}

.send-steps-grid {
  display: flex;
  gap: 72px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}

.send-steps-grid--ordered {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 48px;
}

.send-steps-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 666px;
  max-width: 100%;
}

.send-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 128px;
}

.send-step-head {
  display: flex;
  gap: 24px;
  align-items: center;
}

.send-step-badge {
  background: var(--color-primary);
  width: 50px;
  height: 52px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.56px;
  flex-shrink: 0;
}

.send-step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: -0.56px;
  line-height: normal;
  flex: 1;
  min-width: 0;
}

.send-step-desc {
  font-size: var(--font-size-lead);
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: var(--ls-body);
  line-height: var(--line-height-body);
}


/* ─── TRACK EVERY SHIPMENT ONLINE — Figma 385:4543
       Section: pb-128 px-150 (no top padding; flows from previous section)
       Card: bg orange, h=636, rounded-16, full-width, flex row
         Left (flex:1, p=72, gap=72): copy + search input
         Right (663): image
*/
.send-tracking-section {
  padding: 0 var(--page-gutter) 128px;
  background: #fff;
}

.send-tracking-card {
  background: var(--color-primary);
  border-radius: 16px;
  height: 636px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
}

.send-tracking-text {
  flex: 1;
  min-width: 0;
  padding: 72px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  justify-content: center;
}

.send-tracking-copy {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  color: #fff;
}

.send-tracking-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
  white-space: normal;
}

.send-tracking-desc {
  font-size: var(--font-size-lead);
  font-weight: 400;
  letter-spacing: var(--ls-body);
  line-height: var(--line-height-body);
  width: 540px;
  max-width: 100%;
}

.send-tracking-input-row {
  display: flex;
  align-items: stretch;
  height: 54px;
  width: 421px;
  max-width: 100%;
}

.send-tracking-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: #fff;
  padding: 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.32px;
  border-radius: 8px 0 0 8px;
}

.send-tracking-input::placeholder {
  color: #000;
  opacity: 1;
}

.send-tracking-btn {
  width: 66px;
  height: 54px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
}

.send-tracking-btn img {
  width: 66px;
  height: 54px;
  display: block;
}

/* Figma Rectangle 5 (385:4550): container 663×636, image transform:
   w=243.81%, h=100%, left=-121.86%, top=-0.1%.
   This is intentional oversized positioning (image rendered at 1617×636 inside
   a 663px-wide container, centered with ~808px hidden on each side).
   We mirror this with absolute % values instead of object-fit:cover. */
.send-tracking-image-wrap {
  width: 663px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.send-tracking-image {
  position: absolute;
  width: 243.81%;
  height: 100%;
  left: -121.86%;
  top: -0.1%;
  max-width: none;
  pointer-events: none;
}


/* ─── "Sending regularly?" stats — reuses .stats-section
       Only override: heading width, subtitle width, single-line heading */
.stats-section--send .stats-heading {
  white-space: normal;
  width: 896px;
  max-width: 100%;
  text-align: center;
}

.stats-section--send .stats-subheading {
  width: 1079px;
}

.stats-section--send {
  padding-bottom: 96px;
}


/* ─── READY-TO-SEND CTA — reuses .api-cta-section
       Send-specific desc width (Figma 664) + button font 21px */
.send-cta-section .api-cta-desc {
  width: 664px;
}

.page-send .api-cta-actions .btn {
  font-size: 21px;
  letter-spacing: -0.42px;
}


/* Note: dropdown menuitem active state has no visible variant in Figma —
   `aria-current="page"` is kept on the HTML link for accessibility, but
   no visible color override applied (Figma pixel-perfect priority). */

/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  SEND PAGE — RESPONSIVE                                                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
@media (max-width: 1200px) {

  .hero--send::before,
  .hero--send::after {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .hero--send::before {
    background-size: cover;
    background-position: center 30%;
  }

  .send-hero-body {
    padding: 142px 40px 40px;
  }

  .send-hero-headline {
    font-size: 44px;
  }

  .send-hero-subtitle {
    font-size: 18px;
    width: auto;
  }

  .send-hero-text {
    width: 100%;
    max-width: 700px;
  }

  .send-hero-actions {
    flex-wrap: wrap;
    gap: 16px;
  }

  .solutions-cards-section--send {
    padding: 40px;
  }

  .send-steps-section {
    padding: 0 16px;
  }

  .send-steps-inner {
    padding: 64px 40px;
    gap: 48px;
  }

  .send-steps-title {
    font-size: 32px;
  }

  .send-steps-grid {
    flex-direction: column;
    gap: 48px;
  }

  .send-steps-grid--ordered {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .send-steps-col {
    width: 100%;
    gap: 32px;
  }

  .send-step-title {
    font-size: 22px;
  }

  .send-step-desc {
    font-size: 16px;
  }

  .send-tracking-section {
    padding: 0 40px 64px;
  }

  .send-tracking-card {
    flex-direction: column;
    height: auto;
  }

  .send-tracking-text {
    padding: 48px 40px;
    gap: 32px;
  }

  .send-tracking-title {
    font-size: 32px;
    white-space: normal;
  }

  .send-tracking-desc {
    font-size: 16px;
    width: auto;
  }

  .send-tracking-image-wrap {
    width: 100%;
    height: 300px;
  }

  /* Fall back to object-fit cover at responsive — Figma oversized %
     positioning only makes sense at desktop where wrap is 663 wide. */
  .send-tracking-image {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
  }

  .stats-section--send .stats-heading {
    width: auto;
  }

  .stats-section--send .stats-subheading {
    width: auto;
  }

  .stats-section--send {
    padding-bottom: 64px;
  }
}

@media (max-width: 768px) {
  .send-hero-body {
    padding: 120px 20px 24px;
  }

  .send-hero-headline {
    font-size: 32px;
  }

  .send-hero-subtitle {
    font-size: 16px;
  }

  .send-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .send-hero-actions .btn {
    justify-content: space-between;
  }

  .solutions-cards-section--send {
    padding: 32px 20px;
  }

  .send-steps-section {
    padding: 0 8px;
  }

  .send-steps-inner {
    padding: 40px 20px;
  }

  .send-steps-title {
    font-size: 26px;
  }

  .send-step-badge {
    width: 40px;
    height: 42px;
    font-size: 22px;
  }

  .send-step-title {
    font-size: 20px;
  }

  .send-tracking-section {
    padding: 0 20px 48px;
  }

  .send-tracking-text {
    padding: 32px 20px;
  }

  .send-tracking-title {
    font-size: 26px;
  }

  .send-tracking-input-row {
    width: 100%;
  }

  .send-tracking-image-wrap {
    height: 220px;
  }

  .send-cta-section .api-cta-desc {
    width: auto;
  }

  .stats-section--send .stat-card--orange-boxes {
    overflow: hidden;
  }

  .stats-section--send {
    padding-bottom: 48px;
  }
}

/* ==============================================
   Receive-page styles (.page-receive-parcels / .hero--receive)
   ============================================== */

/* ============================================================
   RECEIVE PARCELS PAGE
   Figma root 409:1807 "Receive Parcels", 1728x6230
   Reuses shared nav/footer/button/steps/tracking systems.
   ============================================================ */
.hero--receive {
  min-height: 750px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero--receive::before,
.hero--receive::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 750px;
}

.hero--receive::before {
  background-image: url('../assets/pickup-bg.png');
  background-image: image-set(
    url('../assets/pickup-bg-2593.avif') type('image/avif'),
    url('../assets/pickup-bg-2593.webp') type('image/webp'),
    url('../assets/pickup-bg.png') type('image/png')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero--receive.has-custom-receive-hero::before {
  background-image: var(--receive-overview-hero-image);
}

.hero--receive::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

.receive-hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 242px var(--frame-gutter-153) 0;
}

.receive-hero-content {
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.receive-hero-text {
  width: 676px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.receive-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: 1.02;
}

.receive-hero-subtitle {
  width: 617px;
  max-width: 100%;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: 1.25;
}

.receive-hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.receive-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 59px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.42px;
  line-height: 1;
}

.receive-hero-btn--light {
  background: #fff;
  color: var(--color-secondary);
}

.receive-hero-btn img {
  width: 24px;
  height: 24px;
}

.solutions-cards-section--receive {
  min-height: 293px;
  padding: 48px var(--page-gutter);
}

.solutions-cards-section--receive .solutions-card-desc {
  line-height: 1.4;
  min-height: 44px;
}

.solutions-cards-section--receive .read-more-link {
  margin-top: auto;
}

.receive-options-section {
  background: #fff;
  padding: 72px var(--page-gutter) 96px;
}

.receive-options-inner,
.receive-locator-inner,
.receive-steps-inner,
.receive-exceptions-inner {
  max-width: 1428px;
  margin: 0 auto;
}

.receive-section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.receive-options-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.receive-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.receive-option-card {
  min-height: 268px;
  background: var(--color-bg-gray);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.receive-option-image {
  width: 232px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.receive-option-image--phone {
  object-position: right center;
}

.receive-option-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.receive-option-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: 1.15;
}

.receive-option-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: 1.45;
}

.receive-locator-section {
  background: #fff;
  padding: 0 var(--page-gutter) 96px;
}

.receive-locator-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.receive-section-title--locator {
  width: 660px;
  max-width: 100%;
}

.receive-locator-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.receive-locator-iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
}

.receive-steps-section {
  background: #fff;
  padding: 0 var(--page-gutter) 96px;
}

.receive-steps-inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.receive-steps-inner .send-steps-title {
  text-align: center;
}

.receive-support-section {
  background: var(--color-primary);
  overflow: hidden;
  padding: 72px var(--page-gutter) 0;
}

.receive-support-inner {
  max-width: 1428px;
  min-height: 831px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 364px minmax(0, 1fr);
  gap: 92px;
}

.receive-support-copy {
  position: relative;
  padding-bottom: 230px;
}

.receive-support-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.receive-support-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.receive-support-desc {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.4px;
  line-height: 1.35;
}

.receive-support-contacts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.receive-support-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.receive-support-contact img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.receive-support-contact--static {
  cursor: default;
}

.receive-support-image {
  position: absolute;
  left: -68px;
  bottom: 0;
  width: 364px;
  max-width: none;
  pointer-events: none;
}

.receive-faq {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
}

.receive-faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.receive-faq-item:first-child {
  border-top: none;
}

.receive-faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.receive-faq-question::-webkit-details-marker {
  display: none;
}

.receive-faq-question span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.receive-faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.receive-faq-item[open] .receive-faq-chevron {
  transform: rotate(180deg);
}

.receive-faq-answer {
  padding: 0 0 20px;
}

.receive-faq-answer p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.32px;
  line-height: 1.45;
}

.receive-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  width: fit-content;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1;
}

.receive-faq-btn img {
  width: 20px;
  height: 20px;
}

.receive-exceptions-section {
  background: #fff;
  padding: 96px var(--page-gutter) 128px;
}

.receive-exceptions-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.receive-exceptions-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.receive-exceptions-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.64px;
  line-height: 1.1;
}

.receive-exceptions-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.4;
}

.receive-exceptions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.receive-exception-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.receive-exception-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.receive-exception-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.receive-exception-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.receive-exception-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.45;
}

.send-tracking-section--receive .send-tracking-desc {
  width: 520px;
}

@media (max-width: 1200px) {

  /* Match locator-embed.css ≤1200px: .eo-locator height becomes 880px */
  .receive-locator-iframe {
    height: 880px;
  }

  .hero--receive::before,
  .hero--receive::after {
    height: 100%;
  }

  .receive-hero-body {
    padding: 148px 40px 48px;
  }

  .receive-hero-title {
    font-size: 46px;
  }

  .receive-hero-subtitle {
    font-size: 18px;
  }

  .solutions-cards-section--receive,
  .receive-options-section,
  .receive-locator-section,
  .receive-steps-section,
  .receive-support-section,
  .receive-exceptions-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .receive-options-grid,
  .receive-exceptions-grid {
    grid-template-columns: 1fr;
  }

  .receive-option-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .receive-support-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .receive-support-copy {
    padding-bottom: 180px;
  }

  .receive-support-image {
    width: 280px;
    left: -32px;
  }

  .receive-steps-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {

  /* Locator ≤960px: stacked layout (map 440px + list). Give enough room. */
  .receive-locator-iframe {
    height: 720px;
  }

  .receive-hero-body {
    padding: 132px 20px 40px;
  }

  .receive-hero-title {
    font-size: 34px;
  }

  .receive-hero-subtitle {
    font-size: 16px;
  }

  .receive-hero-actions {
    gap: 16px;
  }

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

  .solutions-cards-section--receive,
  .receive-options-section,
  .receive-locator-section,
  .receive-steps-section,
  .receive-support-section,
  .receive-exceptions-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .solutions-cards-section--receive {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .receive-section-title,
  .receive-support-title {
    font-size: 28px;
  }

  .receive-options-inner,
  .receive-exceptions-inner {
    gap: 32px;
  }

  .receive-option-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .receive-option-image {
    width: 100%;
    height: 220px;
  }

  .receive-support-copy {
    padding-bottom: 120px;
  }

  .receive-support-image {
    width: 220px;
    left: -20px;
  }

  .receive-support-desc,
  .receive-faq-question span {
    font-size: 16px;
  }

  .receive-support-contact {
    font-size: 16px;
  }

  .receive-exceptions-title {
    font-size: 24px;
  }

  .receive-exception-head {
    align-items: flex-start;
  }
}

/* ==============================================
   Legacy pickup point and parcel locker component styles
   Two related pages grouped per user spec.
   ============================================== */

/* ============================================================
   PICKUP POINTS COMPONENTS
   Figma root 432:3087 "Pickup Points", 1728x4065
   Reuses shared header, footer, button radii, and section grid.
   ============================================================ */

/* ─── Hero (432:3619) — solid #FF7A00, h=492 ─── */
.pp-hero {
  position: relative;
  background: var(--color-primary);
  min-height: 492px;
  overflow: hidden;
  padding: 149px var(--frame-gutter-142) 0;
}

.pp-hero-body {
  display: flex;
  width: 892px;
  max-width: 100%;
  padding: 64px 0;
}

.pp-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  width: 100%;
}

.pp-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.pp-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  width: 826px;
  max-width: 100%;
}

/* ─── Locator section (432:3663) — full-width map, 476 sidebar ─── */
.pp-locator {
  position: relative;
  width: 100%;
  height: 910px;
  overflow: hidden;
  background: #f4f4f4;
}

.pp-locator-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pp-locator-sidebar {
  position: relative;
  z-index: 1;
  width: 476px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 11px 0 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pp-locator-controls {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #c0c0c0;
}

.pp-locator-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-locator-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0;
  line-height: 22px;
}

.pp-locator-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 12px;
}

.pp-locator-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: 0;
  line-height: 1.4;
}

.pp-locator-input::placeholder {
  color: rgba(36, 31, 32, 0.5);
  opacity: 1;
}

.pp-locator-locate {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
}

.pp-locator-locate img {
  width: 20px;
  height: 20px;
}

.pp-locator-filters {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pp-locator-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0;
  line-height: 22px;
  cursor: pointer;
}

.pp-locator-filter img {
  width: 16px;
  height: 16px;
}

.pp-locator-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

.pp-locator-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 24px;
  background: #fff;
  border-bottom: 1px solid #c0c0c0;
  min-height: 106px;
}

.pp-locator-card-icon {
  width: 26px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.pp-locator-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-locator-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.pp-locator-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
}

.pp-locator-card-hours {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
  white-space: nowrap;
}

.pp-locator-card-address {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pp-locator-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-locator-card-tag,
.pp-locator-card-tag-sep {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
  white-space: nowrap;
}

.pp-locator-card-select {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.32px;
  line-height: normal;
  text-decoration: none;
}

.pp-locator-card-select img {
  width: 24px;
  height: 24px;
}

/* ─── Flexible receipt options (432:3845) ─── */
.pp-options {
  background: #fff;
  padding: 72px var(--page-gutter);
}

.pp-options-inner {
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pp-options-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
}

.pp-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pp-option-card {
  background: var(--color-bg-gray);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 268px;
}

.pp-option-image {
  flex-shrink: 0;
  width: 234px;
  height: 268px;
  object-fit: cover;
  object-position: center;
}

.pp-option-image--phone {
  object-position: center;
}

.pp-option-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 72px 24px 24px;
}

.pp-option-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: normal;
}

.pp-option-desc {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
}

.pp-option-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.32px;
  line-height: normal;
  text-decoration: none;
}

.pp-option-link img {
  width: 24px;
  height: 24px;
}

/* ─── What is a parcel locker (440:4868) ─── */
.pp-locker {
  background: #fff;
  padding: 72px var(--page-gutter);
}

.pp-locker-inner {
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 54px;
}

.pp-locker-copy {
  width: 612px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pp-locker-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.pp-locker-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
}

.pp-locker-desc {
  width: 536px;
  max-width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.48px;
  line-height: normal;
}

.pp-locker-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.pp-locker-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.pp-locker-btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.pp-locker-btn--dark {
  background: var(--color-secondary);
  color: #fff;
  justify-content: space-between;
  width: 234px;
}

.pp-locker-btn img {
  width: 24px;
  height: 24px;
}

.pp-locker-image {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 553px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

/* ─── Responsive: 1440 / 1200 / 768 / 375 ─── */
@media (max-width: 1440px) {
  .pp-hero {
    padding: 149px 80px 0;
  }

  .pp-options,
  .pp-locker {
    padding: 72px 80px;
  }
}

@media (max-width: 1200px) {
  .pp-hero {
    padding: 132px 48px 0;
    min-height: 420px;
  }

  .pp-hero-body {
    padding: 48px 0;
  }

  .pp-hero-title {
    font-size: 52px;
  }

  .pp-hero-subtitle {
    font-size: 20px;
  }

  .pp-locator {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .pp-locator-map {
    position: relative;
    height: 480px;
  }

  .pp-locator-sidebar {
    width: 100%;
    height: auto;
    box-shadow: none;
    border-top: 1px solid #c0c0c0;
  }

  .pp-locator-list {
    max-height: 560px;
  }

  .pp-options,
  .pp-locker {
    padding: 56px 48px;
  }

  .pp-options-title,
  .pp-locker-title {
    font-size: 32px;
  }

  .pp-locker-inner {
    gap: 32px;
  }

  .pp-locker-copy {
    width: 480px;
    gap: 40px;
  }

  .pp-locker-text {
    gap: 24px;
  }

  .pp-locker-desc {
    font-size: 20px;
  }

  .pp-locker-image {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .pp-hero {
    padding: 120px 32px 0;
  }

  .pp-hero-title {
    font-size: 40px;
  }

  .pp-hero-body {
    padding: 32px 0;
  }

  .pp-options-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pp-option-card {
    min-height: 0;
  }

  .pp-locker-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .pp-locker-copy {
    width: 100%;
  }

  .pp-locker-desc {
    width: 100%;
  }

  .pp-locker-image {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .pp-hero {
    padding: 110px 20px 0;
    min-height: 360px;
  }

  .pp-hero-body {
    padding: 24px 0;
  }

  .pp-hero-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .pp-hero-subtitle {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .pp-locator-map {
    height: 320px;
  }

  .pp-locator-controls {
    padding: 16px;
    gap: 12px;
  }

  .pp-locator-filters {
    gap: 16px;
    flex-wrap: wrap;
  }

  .pp-locator-card {
    padding: 12px 16px;
    min-height: 0;
  }

  .pp-locator-card-meta {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .pp-options,
  .pp-locker {
    padding: 40px 20px;
  }

  .pp-options-title,
  .pp-locker-title {
    font-size: 26px;
  }

  .pp-option-card {
    flex-direction: column;
  }

  .pp-option-image {
    width: 100%;
    height: 180px;
  }

  .pp-option-body {
    padding: 20px;
    gap: 16px;
  }

  .pp-option-title {
    font-size: 20px;
  }

  .pp-locker-desc {
    font-size: 16px;
  }

  .pp-locker-actions {
    width: 100%;
  }

  .pp-locker-btn {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .pp-locker-btn--dark {
    width: 100%;
  }

  .pp-locker-image {
    height: 260px;
  }
}

/* ============================================================
   PARCEL LOCKER COMPONENTS
   Figma root 432:4113 "Parcel lockers", 1728x5790
   Reuses .pp-locker, .pp-options, .pp-locator-* (cards/filters/search)
   plus shared header/footer/buttons.
   ============================================================ */

/* ─── Hero (432:4125 inside 432:4113) — photo + gradient, 711 tall ─── */
.pl-hero {
  position: relative;
  width: 100%;
  height: 711px;
  overflow: hidden;
  background: var(--color-secondary);
}

.pl-hero::before {
  content: '';
  position: absolute;
  inset: -32px -28px auto -28px;
  height: 743px;
  background-image: url('../assets/parcel-lockers-hero-bg.png');
  background-image: image-set(
    url('../assets/parcel-lockers-hero-bg-2432.avif') type('image/avif'),
    url('../assets/parcel-lockers-hero-bg-2432.webp') type('image/webp'),
    url('../assets/parcel-lockers-hero-bg.png') type('image/png')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.pl-hero::after {
  content: '';
  position: absolute;
  inset: -32px -28px auto -28px;
  height: 743px;
  background: linear-gradient(1deg, rgba(0, 0, 0, 0.3) 5%, rgba(0, 0, 0, 0.7) 95%);
  z-index: 0;
  pointer-events: none;
}

.pl-hero-body {
  position: relative;
  z-index: 1;
  padding: 283px 0 0 var(--frame-gutter-161);
  width: 727px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pl-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  padding-top: 72px;
}

.pl-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.pl-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  width: 686px;
  max-width: 100%;
}

.pl-hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pl-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.pl-hero-btn--primary {
  background: var(--color-primary);
}

.pl-hero-btn--dark {
  background: var(--color-secondary);
}

.pl-hero-btn img {
  width: 24px;
  height: 24px;
}

/* ─── Quick Links (432:4118) — 4 white cards 333x230 on #F4F4F4 container ─── */
.pl-quick-links {
  background: var(--color-bg-gray);
  padding: 48px var(--page-gutter);
}

.pl-quick-links-inner {
  max-width: 1428px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pl-quick-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 230px;
}

.pl-quick-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  line-height: normal;
}

.pl-quick-card-desc {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.32px;
  line-height: normal;
}

.pl-quick-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.32px;
  line-height: normal;
  text-decoration: none;
}

.pl-quick-card-link img {
  width: 24px;
  height: 24px;
}

/* ─── "What is a parcel locker?" CTA overrides (212-wide buttons, both placeholder) ─── */
.pl-locker-actions {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.pl-locker-btn {
  width: 212px;
  justify-content: space-between;
  box-sizing: border-box;
}

/* ─── How to use a parcel locker (432:4172) — 4 steps 2-col grid ─── */
.pl-howto {
  background: #fff;
  padding: 72px var(--page-gutter) 0;
}

.pl-howto-inner {
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.pl-howto-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
  text-align: center;
}

.pl-howto-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row dense;
  gap: 48px 72px;
}

.pl-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 666px;
}

.pl-step-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pl-step-badge {
  flex-shrink: 0;
  width: 50px;
  height: 52px;
  background: var(--color-primary);
  border-radius: 99px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pl-step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: -0.56px;
  line-height: normal;
}

.pl-step-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.42px;
  line-height: normal;
}

/* ─── Find your nearest parcel locker (432:4143) — title + map locator ─── */
.pl-locator-section {
  background: #fff;
  padding: 72px 0 0;
}

.pl-locator-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
  text-align: center;
  padding: 0 var(--page-gutter) 48px;
}

.pl-locator {
  position: relative;
  width: 100%;
  height: 910px;
  overflow: hidden;
  background: #f4f4f4;
}

.pl-locator-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pl-locator-sidebar {
  position: relative;
  z-index: 1;
  width: 553px;
  max-width: 100%;
  height: 100%;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pl-locator-sidebar .pl-locator-controls,
.pl-locator-sidebar .pp-locator-list {
  background: #fff;
}

.pl-locator-sidebar .pl-locator-controls {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #c0c0c0;
  border-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.pl-locator-sidebar .pp-locator-list {
  flex: 1;
  overflow-y: auto;
  border: 1px solid #c0c0c0;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ─── Support Center + FAQ (432:4193) — orange, 767 tall, overflow ─── */
.pl-support {
  position: relative;
  background: var(--color-primary);
  padding: 96px var(--page-gutter);
  overflow: hidden;
}

.pl-support-inner {
  position: relative;
  max-width: 1428px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 471px minmax(0, 1fr);
  column-gap: 150px;
  align-items: start;
}

.pl-support-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.pl-support-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: normal;
  padding-top: 8px;
}

.pl-support-desc {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.4px;
  line-height: 1.4;
}

.pl-support-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.pl-support-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: normal;
}

.pl-support-contact--static {
  text-decoration: none;
  cursor: default;
}

.pl-support-contact img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.pl-support-image {
  position: absolute;
  left: -4px;
  bottom: -141px;
  width: 655px;
  height: 401px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.pl-support-faq {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 733px;
}

.pl-support-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.pl-support-faq-item[open] {
  padding-bottom: 16px;
}

.pl-support-faq-item--static .pl-support-faq-q {
  cursor: default;
}

.pl-support-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 22px;
}

.pl-support-faq-q::-webkit-details-marker {
  display: none;
}

.pl-support-faq-chev {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.pl-support-faq-item[open] .pl-support-faq-chev {
  transform: rotate(180deg);
}

.pl-support-faq-a {
  padding-bottom: 4px;
}

.pl-support-faq-a p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.4;
}

.pl-support-faq-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-decoration: none;
  margin-top: 32px;
  white-space: nowrap;
}

.pl-support-faq-btn img {
  width: 24px;
  height: 24px;
}

/* ─── Responsive: 1440 / 1200 / 900 / 600 ─── */
@media (max-width: 1440px) {
  .pl-hero-body {
    padding-left: 96px;
  }

  .pl-quick-links,
  .pl-howto,
  .pl-support {
    padding-left: 96px;
    padding-right: 96px;
  }

  .pl-locator-title {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media (max-width: 1200px) {
  .pl-hero {
    height: auto;
    min-height: 540px;
  }

  .pl-hero::before,
  .pl-hero::after {
    height: 100%;
    inset: 0;
  }

  .pl-hero-body {
    padding: 200px 48px 64px;
    width: 100%;
  }

  .pl-hero-text {
    padding-top: 24px;
  }

  .pl-hero-title {
    font-size: 52px;
  }

  .pl-hero-subtitle {
    font-size: 20px;
  }

  .pl-quick-links,
  .pl-howto,
  .pl-support {
    padding-left: 48px;
    padding-right: 48px;
  }

  .pl-locator-title {
    padding-left: 48px;
    padding-right: 48px;
    font-size: 32px;
  }

  .pl-quick-links-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-howto-title {
    font-size: 32px;
  }

  .pl-howto-grid {
    gap: 32px 48px;
  }

  .pl-step-title {
    font-size: 24px;
  }

  .pl-step-desc {
    font-size: 18px;
  }

  .pl-locator {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .pl-locator-map {
    position: relative;
    height: 480px;
  }

  .pl-locator-sidebar {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .pl-locator-sidebar .pp-locator-list {
    max-height: 560px;
  }

  .pl-support-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }

  .pl-support-image {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 480px;
    height: 280px;
    margin-top: 24px;
  }

  .pl-support-title {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .pl-hero-body {
    padding: 160px 32px 48px;
  }

  .pl-hero-title {
    font-size: 40px;
  }

  .pl-hero-actions {
    gap: 16px;
  }

  .pl-hero-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .pl-quick-links,
  .pl-howto,
  .pl-support {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pl-locator-title {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pl-howto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pl-step-title {
    font-size: 22px;
  }

  .pl-step-desc {
    font-size: 16px;
  }

  .pl-support-faq-q {
    font-size: 17px;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .pl-hero {
    min-height: 460px;
  }

  .pl-hero-body {
    padding: 130px 20px 36px;
    gap: 24px;
  }

  .pl-hero-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .pl-hero-subtitle {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .pl-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .pl-hero-btn {
    justify-content: space-between;
    width: 100%;
  }

  .pl-quick-links {
    padding: 32px 20px;
  }

  .pl-quick-links-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pl-quick-card {
    min-height: 0;
  }

  .pl-howto {
    padding: 40px 20px 0;
  }

  .pl-howto-title {
    font-size: 26px;
  }

  .pl-howto-inner {
    gap: 32px;
  }

  .pl-locator-title {
    font-size: 26px;
    padding: 0 20px 32px;
  }

  .pl-locator-map {
    height: 320px;
  }

  .pl-support {
    padding: 40px 20px;
  }

  .pl-support-title {
    font-size: 26px;
  }

  .pl-support-desc {
    font-size: 16px;
  }

  .pl-support-contact {
    font-size: 16px;
  }

  .pl-support-image {
    display: none;
  }

  .pl-support-faq-q {
    font-size: 15px;
    padding: 10px 0;
  }

  .pl-support-faq-btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    justify-content: space-between;
  }

  .pl-locker-actions .pl-locker-btn {
    width: 100%;
  }
}

/* ==============================================
   Tracking component styles (.tk-*)
   ============================================== */

/* ============================================================
   TRACKING COMPONENTS
   Figma root 440:6376 "Tracking", 1728x4339
   Reuses .pl-howto / .pl-step (4-step grid), .pl-support (orange FAQ),
   .pp-options (4-card grid), and the shared header/footer.
   ============================================================ */

/* ─── Hero (440:6417) — orange, 594 tall, title + subtitle + tracker input ─── */
.tk-hero {
  position: relative;
  background: var(--color-primary);
  min-height: 594px;
  overflow: hidden;
  padding: 215px var(--frame-gutter-142) 0;
}

.tk-hero-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 892px;
  max-width: 100%;
  padding: 64px 0;
}

.tk-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.tk-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.28px;
  line-height: normal;
}

.tk-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.48px;
  line-height: normal;
  width: 826px;
  max-width: 100%;
}

.tk-hero-form {
  display: flex;
  align-items: stretch;
  width: 516px;
  max-width: 100%;
  overflow: hidden;
}

.tk-hero-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: #fff;
  padding: 16px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
  line-height: normal;
}

.tk-hero-input::placeholder {
  color: #000;
  opacity: 1;
}

.tk-hero-submit {
  flex-shrink: 0;
  width: 69px;
  height: 59px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: block;
}

.tk-hero-submit img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Frequently Asked Questions (442:6684) — 6 white cards on gray ─── */
.tk-faq-section {
  background: var(--color-bg-gray);
  padding: 72px var(--page-gutter);
}

.tk-faq-inner {
  max-width: 1428px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tk-faq-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
}

.tk-faq-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tk-faq-card {
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
}

.tk-faq-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  min-height: 80px;
  box-sizing: border-box;
  cursor: pointer;
  list-style: none;
}

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

.tk-faq-card-q {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0;
  line-height: 22px;
}

.tk-faq-card-chev {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tk-faq-card[open] .tk-faq-card-chev {
  transform: rotate(180deg);
}

.tk-faq-card-a {
  padding: 0 24px 20px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.32px;
  line-height: 1.5;
  margin: 0;
}

/* Tracking reuses the parcel-locker steps block, but this page needs
   extra white space before the orange support section below. */
.page-tracking .pl-howto {
  padding-bottom: 72px;
}

/* ─── Responsive: 1440 / 1200 / 900 / 600 ─── */
@media (max-width: 1440px) {
  .tk-hero {
    padding: 195px 96px 0;
  }

  .tk-faq-section {
    padding: 72px 96px;
  }
}

@media (max-width: 1200px) {
  .tk-hero {
    padding: 160px 48px 0;
    min-height: 0;
  }

  .tk-hero-body {
    padding: 48px 0;
    gap: 32px;
    width: 100%;
  }

  .tk-hero-title {
    font-size: 52px;
  }

  .tk-hero-subtitle {
    font-size: 20px;
    width: 100%;
  }

  .tk-faq-section {
    padding: 56px 48px;
  }

  .tk-faq-title {
    font-size: 32px;
  }

  .tk-faq-card-q {
    font-size: 18px;
  }

  .page-tracking .pl-howto {
    padding-bottom: 56px;
  }
}

@media (max-width: 900px) {
  .tk-hero {
    padding: 140px 32px 0;
  }

  .tk-hero-title {
    font-size: 40px;
  }

  .tk-faq-section {
    padding: 48px 32px;
  }

  .page-tracking .pl-howto {
    padding-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .tk-hero {
    padding: 120px 20px 0;
  }

  .tk-hero-body {
    padding: 24px 0;
    gap: 24px;
  }

  .tk-hero-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .tk-hero-subtitle {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .tk-hero-form {
    width: 100%;
  }

  .tk-hero-input {
    font-size: 16px;
    padding: 14px;
  }

  .tk-hero-submit {
    width: 56px;
    height: 51px;
  }

  .tk-faq-section {
    padding: 32px 20px;
  }

  .tk-faq-title {
    font-size: 26px;
  }

  .tk-faq-list {
    gap: 12px;
  }

  .tk-faq-card {
    padding: 14px 16px;
    min-height: 0;
    gap: 12px;
  }

  .tk-faq-card-q {
    font-size: 15px;
    white-space: normal;
  }

  .tk-faq-card-chev {
    width: 24px;
    height: 24px;
  }

  .page-tracking .pl-howto {
    padding-bottom: 32px;
  }
}

/* ==============================================
   Contact and support page styles (.page-cs / .cs-*)
   Includes hero, FAQ, search categories, inquiry types, contact form.
   ============================================== */



/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  CONTACT & SUPPORT PAGE                                                ║
   ║  Figma frame 307:6545 "Contact & Support", 1728×5084.                  ║
   ║  All selectors scoped to `.cs-*` / `.page-cs`.                         ║
   ║  Reuses: .site-header, .news-section, .site-footer.                    ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ─── NEWS SECTION OVERRIDE — Figma 314:2013 ────────────────────
   Homepage News (270:999) uses bg-#F4F4F4. Contact & Support News (314:2013)
   uses bg-white. All other News properties (cards, typography, gaps, image,
   chevron, container width, gap-40 heading→grid) are byte-identical between
   the two Figma nodes — confirmed via MCP. Single page-scoped override below. */
.page-cs .news-section {
  background: #fff;
}

/* ─── SUPPORT CENTER HERO (307:7929) ────────────────────
   bg #FF7A00 orange, 657 tall, content frame at x=153 y=247 w=892 py=64
   Title 64px Bold, subtitle 24px SemiBold, contact strip (3 items, gap 32)
   Right side: woman-corded-phone image at x=896 y=82 size 842×842 (overflow:hidden) */
.cs-hero {
  position: relative;
  background: var(--color-primary);
  min-height: 657px;
  overflow: hidden;
  padding: 247px var(--frame-gutter-153) 0;
}

.cs-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0;
  width: 892px;
  max-width: 100%;
}

.cs-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.cs-hero-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.28px;
  line-height: var(--line-height-h1);
}

.cs-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: var(--line-height-body);
  width: 853px;
  max-width: 100%;
}

.cs-hero-contacts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cs-hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.cs-hero-contact img {
  width: 32px;
  height: 32px;
}

.cs-hero-contact--white {
  background: #fff;
  color: var(--color-secondary);
}

.cs-hero-contact--dark {
  background: var(--color-secondary);
  color: #fff;
}

.cs-hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.cs-hero-hours img {
  width: 24px;
  height: 24px;
}

.cs-hero-image {
  position: absolute;
  left: calc((100vw - var(--container-max)) / 2 + 896px);
  top: 82px;
  width: 842px;
  height: 842px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}


/* ─── FAQ (307:7958) ────────────────────
   bg #F4F4F4, px-150 py-96, gap-32
   Title 32px Bold, 6 white rounded-16 items, w=1428, px-24 py-12, 16px between */
.cs-faq {
  background: var(--color-bg-gray);
  padding: 96px var(--page-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-faq-inner {
  width: 100%;
  max-width: 1428px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-faq-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.64px;
  line-height: normal;
}

.cs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 12px 24px;
}

.cs-faq-item>summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.cs-faq-item>summary::-webkit-details-marker {
  display: none;
}

.cs-faq-question span {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 22px;
}

.cs-faq-chevron {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cs-faq-item[open] .cs-faq-chevron {
  transform: rotate(180deg);
}


/* ─── SEARCH BAR + CATEGORIES (314:1821) ────────────────────
   bg #fff, px-150 py-128, gap-72
   Search: gray (#F4F4F4) card w=1018 rounded-16 px-24 py-12; icon 32 + text 20px SemiBold
   "Categories" 40px Bold dark
   6 category cards 2×3, each card w=698 (flex-1) h=128, #F4F4F4 bg, p-32, rounded-16,
     icon 32 + 2-line text (20px Bold + 16px Regular) */
.cs-categories {
  background: #fff;
  padding: 128px var(--page-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.cs-search-bar {
  background: var(--color-bg-gray);
  border-radius: 16px;
  padding: 12px 24px;
  width: 1018px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs-search-bar__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cs-search-bar__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 0;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 22px;
}

.cs-search-bar__input::placeholder {
  color: rgba(36, 31, 32, 0.45);
  opacity: 1;
}

.cs-categories-block {
  width: 100%;
  display: grid;
  grid-template-areas: 'content';
}

.cs-categories-default {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-categories-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.8px;
  line-height: normal;
}

.cs-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 32px;
}

.cs-category {
  background: var(--color-bg-gray);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  min-height: 128px;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  font-family: var(--font);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button.cs-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

button.cs-category.is-active {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* ─── CATEGORY FAQ PANEL (356:3185) ─────────────────────── */
.cs-category-faq {
  grid-area: content;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cs-categories-block.faq-open .cs-category-faq {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.cs-categories-block.faq-open .cs-categories-default {
  pointer-events: none;
}

.cs-category-faq-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-category-faq-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.18s ease;
}

.cs-category-faq-back:hover {
  opacity: 0.7;
}

.cs-category-faq-back-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.cs-category-faq-name {
  color: var(--color-secondary);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: normal;
  margin: 0;
}

.cs-category-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-category-faq-list .cs-faq-item {
  background: var(--color-bg-gray);
}

.cs-faq-answer {
  padding: 8px 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  line-height: 1.6;
}

.cs-category-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cs-category-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.cs-category-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: normal;
}

.cs-category-desc {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.4px;
  line-height: normal;
}


/* ─── CONTACT FORM (356:2691) ────────────────────
   bg #F4F4F4, px-150 py-96, gap-32, title 32px
   Left column w=515 (Select category + 4 inquiry radios)
   Right column flex-1 (Message label + white card with form + Send button) */
.cs-direct-contacts {
  padding: 72px var(--page-gutter);
  background: #fff;
}

.cs-direct-contacts__inner {
  max-width: 1428px;
  margin: 0 auto;
}

.cs-direct-contacts__heading {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.cs-direct-contacts__heading h2 {
  color: var(--color-secondary);
  font-size: 32px;
  line-height: 1.15;
}

.cs-direct-contacts__heading p,
.cs-direct-contacts__note,
.cs-contact-intro {
  margin: 0;
  color: rgba(36, 31, 32, .75);
  line-height: 1.5;
}

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

.cs-direct-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  border: 1px solid #e1e1df;
  border-radius: 14px;
  color: var(--color-secondary);
  transition: border-color .2s ease, transform .2s ease;
}

.cs-direct-contact:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.cs-direct-contact span {
  font-size: 14px;
  color: rgba(36, 31, 32, .65);
}

.cs-direct-contact strong {
  overflow-wrap: anywhere;
}

.cs-direct-contacts__note {
  margin-top: 24px;
}

.cs-contact-intro {
  max-width: 900px;
}

@media (max-width: 900px) {
  .cs-direct-contacts__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cs-direct-contacts__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cs-direct-contacts {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cs-direct-contacts__grid {
    grid-template-columns: 1fr;
  }
}

.cs-contact {
  background: var(--color-bg-gray);
  padding: 96px var(--page-gutter);
}

.cs-contact-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1428px;
  margin: 0 auto;
}

.cs-contact-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.64px;
  line-height: normal;
}

.cs-contact-form {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.cs-contact-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.cs-contact-column--categories {
  width: 515px;
  flex-shrink: 0;
}

.cs-contact-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
}

.cs-contact-column-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.4px;
  line-height: normal;
}

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

/* Left column — Inquiry Categories */
.cs-contact-categories {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-contact-categories-label {
  display: none;
}

.cs-inquiry {
  position: relative;
  background: #fff;
  border: 1px solid rgba(36, 31, 32, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.cs-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(36, 31, 32, 0.06);
}

.cs-inquiry-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cs-inquiry-icon {
  width: 24px;
  height: 24px;
}

.cs-inquiry-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cs-inquiry-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 22px;
}

.cs-inquiry-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  line-height: 22px;
}

/* Custom radio mark — sourced from Figma SVG (cs-radio-off / cs-radio-on) */
.cs-inquiry-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url('../assets/cs-radio-off.svg') center/contain no-repeat;
  flex-shrink: 0;
}

.cs-inquiry-input:checked+.cs-inquiry-icon~.cs-inquiry-radio,
.cs-inquiry:has(.cs-inquiry-input:checked) .cs-inquiry-radio {
  background-image: url('../assets/cs-radio-on.svg');
}

.cs-inquiry:has(.cs-inquiry-input:checked) {
  border-color: rgba(245, 130, 32, 0.32);
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
  box-shadow: 0 12px 24px rgba(245, 130, 32, 0.08);
}

/* Right column — Message form */
.cs-message-area {
  flex: 1;
  align-self: stretch;
}

.cs-message-head {
  flex-wrap: wrap;
}

.cs-message-label {
  display: inline-flex;
  align-items: center;
}

.cs-message-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.26px;
  line-height: 1.2;
}

.cs-message-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 48px;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
  justify-content: flex-start;
  box-shadow: 0 20px 48px rgba(36, 31, 32, 0.06);
}

.cs-message-fields {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-form-row {
  display: flex;
  gap: 16px;
}

.cs-form-row .cs-form-field {
  flex: 1;
  min-width: 0;
}

.cs-form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-form-dynamic {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 120px;
}

.cs-form-dynamic.is-leaving {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cs-form-dynamic.is-entering .cs-form-field,
.cs-form-dynamic.is-entering .cs-form-row,
.cs-form-dynamic.is-entering .cs-form-helper,
.cs-form-dynamic.is-entering .cs-form-dynamic-card {
  animation: csSupportFieldIn 0.34s ease both;
  animation-delay: calc(var(--field-index, 0) * 0.05s);
}

.cs-form-dynamic-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(245, 130, 32, 0.06) 0%, rgba(245, 130, 32, 0.02) 100%);
}

.cs-form-helper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(36, 31, 32, 0.04);
  color: rgba(36, 31, 32, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.cs-form-helper::before {
  content: '';
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.12);
}

.cs-form-helper strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-secondary);
}

.cs-form-field--grow {
  flex: 1 0 0;
  min-height: 0;
}

.cs-form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 22px;
}

.cs-form-input {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.4;
  outline: none;
}

.cs-form-input::placeholder {
  color: rgba(36, 31, 32, 0.5);
}

.cs-form-input:focus {
  border-color: var(--color-primary);
}

.cs-form-input--textarea {
  resize: none;
  flex: 1 0 0;
  min-height: 120px;
  height: auto;
  overflow: hidden;
}

.cs-form-note {
  font-size: 14px;
  font-weight: 400;
  color: rgba(36, 31, 32, 0.8);
  letter-spacing: -0.28px;
  line-height: normal;
}

.cs-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(36, 31, 32, 0.86);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.cs-form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.cs-form-consent a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cs-form-outcome {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  scroll-margin-top: 120px;
}

.cs-form-outcome:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.cs-form-outcome strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.cs-form-outcome p,
.cs-form-outcome ul {
  margin: 0;
}

.cs-form-outcome ul {
  padding-left: 20px;
}

.cs-form-outcome--success {
  border-color: rgba(33, 105, 63, 0.35);
  background: rgba(72, 187, 120, 0.12);
  color: #21693f;
}

.cs-form-outcome--error {
  border-color: rgba(164, 36, 36, 0.35);
  background: rgba(220, 53, 69, 0.1);
  color: #842525;
}

.cs-form-submit {
  align-self: flex-end;
  background: var(--color-primary);
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.32px;
  line-height: normal;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.cs-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(245, 130, 32, 0.22);
}

.cs-form-submit.is-sent {
  opacity: 0.92;
}

@keyframes csSupportFieldIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  CONTACT & SUPPORT — RESPONSIVE                                        ║
   ╚══════════════════════════════════════════════════════════════════════╝ */
@media (max-width: 1200px) {
  .cs-hero {
    padding: 142px 40px 40px;
    min-height: auto;
  }

  .cs-hero-content {
    width: 100%;
    padding: 24px 0;
    gap: 24px;
  }

  .cs-hero-title {
    font-size: 44px;
  }

  .cs-hero-subtitle {
    font-size: 18px;
    width: auto;
  }

  .cs-hero-contacts {
    gap: 16px;
  }

  .cs-hero-image {
    /* On narrower viewports the image sits behind text with reduced opacity
       (no clean place for an 842px figure beside stacking content) */
    right: -200px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.4;
  }

  .cs-faq {
    padding: 64px 40px;
  }

  .cs-faq-title {
    font-size: 28px;
  }

  .cs-categories {
    padding: 80px 40px;
    gap: 48px;
  }

  .cs-categories-title {
    font-size: 32px;
  }

  .cs-categories-grid {
    gap: 24px;
  }

  .cs-category {
    padding: 24px;
    min-height: auto;
  }

  .cs-category-faq-name {
    font-size: 28px;
  }

  .cs-category-faq-back-icon {
    width: 36px;
    height: 36px;
  }

  .cs-contact {
    padding: 64px 40px;
  }

  .cs-contact-title {
    font-size: 28px;
  }

  .cs-contact-form {
    flex-direction: column;
  }

  .cs-contact-column--categories {
    width: 100%;
  }

  .cs-message-card {
    height: auto;
    min-height: 0;
    padding: 24px 24px 32px;
  }

  .cs-message-fields,
  .cs-form-field--grow,
  .cs-form-input--textarea {
    flex: none;
  }

  .cs-form-field--grow {
    min-height: auto;
  }

  .cs-form-input--textarea {
    height: 180px;
    overflow: auto;
  }

  .cs-form-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 120px 20px 32px;
  }

  .cs-hero-title {
    font-size: 32px;
  }

  .cs-hero-subtitle {
    font-size: 16px;
  }

  .cs-hero-contacts {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cs-hero-contact,
  .cs-hero-hours {
    justify-content: center;
  }

  .cs-hero-image {
    display: none;
  }

  .cs-faq {
    padding: 48px 20px;
  }

  .cs-faq-title {
    font-size: 22px;
  }

  .cs-faq-question span {
    font-size: 16px;
    line-height: 1.4;
  }

  .cs-faq-chevron {
    width: 24px;
    height: 24px;
  }

  .cs-categories {
    padding: 48px 20px;
    gap: 32px;
  }

  .cs-search-bar {
    padding: 12px 16px;
    gap: 12px;
  }

  .cs-search-bar__input {
    font-size: 16px;
  }

  .cs-categories-title {
    font-size: 24px;
  }

  .cs-categories-grid {
    grid-template-columns: 1fr;
  }

  .cs-category {
    padding: 20px;
  }

  .cs-category-name,
  .cs-category-desc {
    font-size: 16px;
  }

  .cs-category-faq-name {
    font-size: 22px;
  }

  .cs-category-faq-back-icon {
    width: 24px;
    height: 24px;
  }

  .cs-category-faq-header {
    gap: 12px;
  }

  .cs-contact {
    padding: 48px 20px;
  }

  .cs-contact-title {
    font-size: 22px;
  }

  .cs-message-card {
    padding: 20px;
  }

  .cs-message-head {
    align-items: flex-start;
  }

  .cs-inquiry {
    padding: 12px;
  }

  .cs-inquiry-name {
    font-size: 16px;
  }

  .cs-inquiry-desc {
    font-size: 14px;
  }

  .cs-form-submit {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ===== NEWS PAGES ===== */
.page-news .site-header:not(.site-header--scrolled):not(.site-header--dropdown-open) {
  background: #ff8200;
}

.news-page__listing {
  padding-top: 130px;
}

.page-news .news-grid {
  height: auto;
  min-height: 429px;
  align-items: stretch;
}

.page-news .news-small-grid {
  align-items: stretch;
}

.news-page__date {
  margin: 0 0 12px;
  color: #787878;
  font-size: 14px;
}

.news-page__more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.news-page__pagination {
  margin-top: 40px;
}

.news-detail {
  padding: 150px 0 96px;
  background: #f5f5f5;
}

.news-detail__inner {
  max-width: 940px;
}

.news-detail__back {
  display: inline-flex;
  margin-bottom: 30px;
}

.news-detail__title {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.news-detail__excerpt {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.55;
}

.news-detail__image {
  display: block;
  width: 100%;
  max-height: 520px;
  margin: 0 0 42px;
  object-fit: cover;
}

.news-detail__content {
  font-size: 17px;
  line-height: 1.7;
}

.news-detail__content h2,
.news-detail__content h3 {
  margin-top: 36px;
  line-height: 1.2;
}

.news-detail__content img {
  max-width: 100%;
  height: auto;
}

.pickup-desc> :first-child,
.sustainability-desc> :first-child {
  margin-top: 0;
}

.pickup-desc> :last-child,
.sustainability-desc> :last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .news-page__listing {
    padding-top: 90px;
  }

  .news-page__more-grid {
    grid-template-columns: 1fr;
  }

  .news-detail {
    padding: 115px 0 64px;
  }
}

/* Legal pages */
.legal-page {
  background: #f5f5f5;
}

.legal-hero {
  position: relative;
  min-height: 390px;
  padding: 150px var(--page-gutter) 76px;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
}

.legal-hero::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 680px;
  height: 680px;
  background: url('../assets/footer-bg.svg') center / contain no-repeat;
  content: '';
  filter: brightness(0) invert(1);
  opacity: .09;
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.legal-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 100%;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.4;
}

.legal-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.legal-breadcrumb a:hover,
.legal-breadcrumb a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-breadcrumb span[aria-current='page'] {
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.legal-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-hero__title {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 72px);
  letter-spacing: -.04em;
  line-height: 1.04;
}

.legal-detail {
  padding: 72px var(--page-gutter) 104px;
  background: #f5f5f5;
}

.legal-detail__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.legal-detail__sidebar {
  position: sticky;
  top: 126px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-document-nav,
.legal-detail__document {
  border: 1px solid #e7e4e4;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 31, 32, .06);
}

.legal-document-nav {
  overflow: hidden;
  border-radius: 18px;
}

.legal-document-nav__title {
  margin: 0;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #ece9e9;
  color: #241f20;
  font-size: 18px;
  line-height: 1.3;
}

.legal-document-nav__links {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.legal-document-nav__link {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #575254;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.legal-document-nav__link img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease;
}

.legal-document-nav__link:hover,
.legal-document-nav__link:focus-visible {
  background: #fff3e8;
  color: #241f20;
}

.legal-document-nav__link:hover img,
.legal-document-nav__link:focus-visible img {
  opacity: 1;
  transform: translateX(2px);
}

.legal-document-nav__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.legal-document-nav__link.is-active {
  background: var(--color-primary);
  color: #fff;
}

.legal-document-nav__link.is-active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.legal-help-card {
  padding: 24px;
  border-radius: 18px;
  background: #241f20;
  color: #fff;
}

.legal-help-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  place-items: center;
}

.legal-help-card__icon svg {
  width: 24px;
  height: 24px;
}

.legal-help-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
}

.legal-help-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.55;
}

.legal-help-card>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-help-card>a img {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.legal-help-card>a:hover img,
.legal-help-card>a:focus-visible img {
  transform: translateX(3px);
}

.legal-detail__document {
  min-width: 0;
  padding: 52px 56px 64px;
  border-radius: 22px;
}

.legal-detail__document-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ece9e9;
}

.legal-detail__document-heading p {
  margin: 0 0 4px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-detail__document-heading h2 {
  margin: 0;
  color: #241f20;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.legal-detail__document-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #fff3e8;
  color: var(--color-primary);
  place-items: center;
}

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

.legal-detail__content {
  max-width: none;
  color: #494446;
  font-size: 16px;
  line-height: 1.78;
}

.legal-detail__content>*+* {
  margin-top: 18px;
}

.legal-detail__content h2,
.legal-detail__content h3,
.legal-detail__content h4 {
  margin-top: 36px;
  color: #241f20;
  font-weight: 750;
  line-height: 1.25;
}

.legal-detail__content strong {
  color: #241f20;
  font-weight: 750;
}

.legal-detail__content ul,
.legal-detail__content ol {
  padding-left: 25px;
}

.legal-detail__content ul {
  list-style: disc;
}

.legal-detail__content ol {
  list-style: decimal;
}

.legal-detail__content li+li {
  margin-top: 10px;
}

.legal-detail__content a {
  color: #f58220;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-detail__content img {
  max-width: 100%;
  height: auto;
}

.legal-detail__content table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.legal-detail__content th,
.legal-detail__content td {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid #dedadb;
  text-align: left;
  vertical-align: top;
}

.legal-detail__content tr:first-child td {
  background: #f58220;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .legal-hero {
    min-height: 330px;
    padding: 126px 20px 58px;
  }

  .legal-hero::after {
    top: -80px;
    right: -230px;
    width: 520px;
    height: 520px;
  }

  .legal-breadcrumb {
    margin-bottom: 26px;
  }

  .legal-breadcrumb span[aria-current='page'],
  .legal-breadcrumb span[aria-current='page']~* {
    display: none;
  }

  .legal-hero__title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .legal-detail {
    padding: 40px 20px 72px;
  }

  .legal-detail__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-detail__sidebar {
    position: static;
  }

  .legal-document-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-detail__document {
    padding: 32px 24px 44px;
    border-radius: 18px;
  }

  .legal-detail__document-heading {
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 26px;
  }

  .legal-detail__content {
    font-size: 15px;
    line-height: 1.72;
  }
}

@media (max-width: 520px) {
  .legal-document-nav__links {
    grid-template-columns: 1fr;
  }

  .legal-help-card {
    padding: 22px;
  }

  .legal-detail__document-icon {
    width: 46px;
    height: 46px;
  }

  .legal-detail__document-heading h2 {
    font-size: 23px;
  }
}

/* Service notices */
.page-service-notices .site-header:not(.site-header--scrolled):not(.site-header--dropdown-open) {
  background: var(--color-primary);
}

.service-notices-archive {
  min-height: 70vh;
  padding: 154px 0 96px;
  background: var(--color-bg-gray);
}

.service-notices-archive__inner,
.service-notices-section .section-inner {
  max-width: none;
  margin: 0;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.service-notices-archive__header {
  max-width: 900px;
  margin-bottom: 54px;
}

.service-notices-archive__eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-notices-archive__header h1 {
  margin: 0 0 20px;
  color: var(--color-secondary);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.service-notices-archive__header>p:last-child {
  max-width: 760px;
  margin: 0;
  color: #4d555e;
  font-size: 20px;
  line-height: 1.55;
}

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

.service-notice-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 28px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4e5e7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgb(18 29 42 / 5%);
}

.service-notice-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--color-primary);
  content: '';
}

.service-notice-card--warning::before {
  background: #d9a400;
}

.service-notice-card--critical::before {
  background: #c93030;
}

.service-notice-card__meta,
.service-notice-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #737980;
  font-size: 13px;
}

.service-notice-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0e2;
  color: #b65300;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-notice-badge--warning {
  background: #fff6d8;
  color: #795d00;
}

.service-notice-badge--critical {
  background: #ffe8e8;
  color: #a21e1e;
}

.service-notice-card__body {
  margin-top: 24px;
}

.service-notice-card__category {
  margin: 0 0 9px;
  color: #737980;
  font-size: 14px;
  font-weight: 600;
}

.service-notice-card__title {
  margin: 0 0 14px;
  color: var(--color-secondary);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.service-notice-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #4d555e;
  font-size: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.service-notice-card__link {
  margin-top: auto;
  padding-top: 24px;
}

.service-notices-pagination {
  margin-top: 40px;
}

.service-notices-empty {
  padding: 42px;
  border-radius: 16px;
  background: #fff;
  color: #4d555e;
  font-size: 18px;
}

.service-notices-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.service-notices-section__header {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 40px;
}

.service-notices-section__title {
  color: var(--color-secondary);
  font-size: 48px;
  letter-spacing: -.96px;
  white-space: nowrap;
}

.service-notice-detail {
  min-height: 70vh;
  padding: 150px 0 96px;
  background: #f5f5f5;
}

.service-notice-detail__inner {
  max-width: 940px;
}

.service-notice-detail__back {
  display: inline-flex;
  margin-bottom: 34px;
}

.service-notice-detail__meta {
  margin-bottom: 24px;
}

.service-notice-detail__title {
  max-width: 880px;
  margin: 0 0 20px;
  color: var(--color-secondary);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.service-notice-detail__excerpt {
  max-width: 780px;
  margin: 0 0 38px;
  color: #4d555e;
  font-size: 20px;
  line-height: 1.55;
}

.service-notice-detail__content {
  padding-top: 34px;
  border-top: 1px solid #d8dadd;
  color: #202936;
  font-size: 17px;
  line-height: 1.75;
}

.service-notice-detail__content>*+* {
  margin-top: 18px;
}

.service-notice-detail__content h2,
.service-notice-detail__content h3,
.service-notice-detail__content h4 {
  margin-top: 36px;
  line-height: 1.25;
}

.service-notice-detail__content ul,
.service-notice-detail__content ol {
  padding-left: 25px;
}

.service-notice-detail__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-notice-detail__action {
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .service-notices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-notices-archive,
  .service-notice-detail {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .service-notices-archive__inner,
  .service-notices-section .section-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-notices-archive__header {
    margin-bottom: 34px;
  }

  .service-notices-archive__header>p:last-child,
  .service-notice-detail__excerpt {
    font-size: 17px;
  }

  .service-notices-grid {
    grid-template-columns: 1fr;
  }

  .service-notice-card {
    min-height: 0;
    padding: 24px;
  }

  .service-notices-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .service-notices-section__title {
    font-size: 34px;
    white-space: normal;
  }

  .service-notice-detail__meta {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* Send CMS subpages */
.page-send-detail .send-detail-hero {
  min-height: 720px;
}

.page-send-detail .send-detail-hero.has-custom-hero::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--send-detail-hero-image);
  background-position: center;
  background-size: cover;
}

.page-send-detail .send-detail-hero.has-custom-hero::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-send-detail .send-hero-body {
  padding-top: 220px;
  padding-bottom: 88px;
}

.send-detail-eyebrow,
.send-detail-section-heading__eyebrow,
.send-content-block__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.send-detail-content {
  padding: 96px var(--page-gutter);
  background: #f4f4f4;
}

.send-detail-inner,
.send-detail-faq__inner,
.send-detail-footer__inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.send-detail-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.send-content-block,
.send-content-prose {
  border-radius: 16px;
  background: #fff;
}

.send-content-block--cards,
.send-content-block--checklist,
.send-content-block--table,
.send-content-block--rich-text,
.send-content-prose {
  padding: 48px;
}

.send-detail-section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 850px;
  margin-bottom: 36px;
}

.send-detail-section-heading h2,
.send-content-block--rich-text>h2,
.send-content-block--locator h2,
.send-content-block--cta h2 {
  margin: 0;
  color: var(--color-secondary);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.send-detail-section-heading p,
.send-content-block--locator p,
.send-content-block--cta p {
  margin: 0;
  color: #384250;
  font-size: 18px;
  line-height: 1.55;
}

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

.send-info-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fafafa;
}

.send-info-card h3,
.send-checklist__item h3 {
  margin: 0 0 18px;
  color: var(--color-secondary);
  font-size: 24px;
  line-height: 1.25;
}

.send-rich-text,
.send-content-prose {
  color: #27313e;
  font-size: 17px;
  line-height: 1.65;
}

.send-rich-text>*:first-child,
.send-content-prose>*:first-child {
  margin-top: 0;
}

.send-rich-text>*:last-child,
.send-content-prose>*:last-child {
  margin-bottom: 0;
}

.send-rich-text>*+*,
.send-content-prose>*+* {
  margin-top: 16px;
}

.send-rich-text ul,
.send-rich-text ol,
.send-content-prose ul,
.send-content-prose ol {
  padding-left: 24px;
}

.send-rich-text ul,
.send-content-prose ul {
  list-style: disc;
}

.send-rich-text ol,
.send-content-prose ol {
  list-style: decimal;
}

.send-rich-text a,
.send-content-prose a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.send-content-block--rich-text {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
}

.send-content-block--rich-text>h2 {
  position: sticky;
  top: 130px;
}

.send-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #dedede;
  list-style: none;
}

.send-checklist__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  min-height: 190px;
  padding: 30px;
  background: #fff;
}

.send-checklist__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.send-checklist__number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.send-checklist__item p {
  margin: 0;
  color: #384250;
  font-size: 16px;
  line-height: 1.55;
}

.send-service-table-wrap {
  overflow-x: auto;
  border: 1px solid #dedede;
  border-radius: 14px;
}

.send-service-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-secondary);
  font-size: 16px;
  text-align: left;
}

.send-service-table th,
.send-service-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #dedede;
  vertical-align: top;
}

.send-service-table thead th {
  background: var(--color-secondary);
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.send-service-table tbody th {
  width: 26%;
  font-weight: 700;
}

.send-service-table--two-columns tbody th,
.send-service-table--two-columns tbody td {
  width: 50%;
}

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

.send-content-block--locator,
.send-content-block--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 56px;
  color: #fff;
}

.send-content-block--locator {
  background: var(--color-secondary);
}

.send-content-block--cta {
  background: var(--color-primary);
}

.send-content-block--locator>div,
.send-content-block--cta>div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.send-content-block--locator h2,
.send-content-block--locator p,
.send-content-block--cta h2,
.send-content-block--cta p {
  color: #fff;
}

.send-content-block--locator .btn {
  background: var(--color-primary);
}

.send-content-block--cta .btn {
  background: var(--color-secondary);
}

.send-detail-faq {
  padding: 96px var(--page-gutter);
  background: #fff;
}

.send-detail-faq__inner {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.send-detail-faq__list {
  border-top: 1px solid #cfd3d8;
}

.send-detail-faq__item {
  border-bottom: 1px solid #cfd3d8;
}

.send-detail-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--color-secondary);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

.send-detail-faq__item summary::-webkit-details-marker {
  display: none;
}

.send-detail-faq__item summary img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.send-detail-faq__item[open] summary img {
  transform: rotate(180deg);
}

.send-detail-faq__answer {
  padding: 0 52px 24px 0;
  color: #384250;
  font-size: 16px;
  line-height: 1.6;
}

.send-detail-faq__answer>*:first-child {
  margin-top: 0;
}

.send-detail-faq__answer>*:last-child {
  margin-bottom: 0;
}

.send-detail-footer {
  padding: 42px var(--page-gutter);
  background: #f4f4f4;
}

.send-detail-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 1000px) {
  .page-send-detail .send-detail-hero {
    min-height: 650px;
  }

  .page-send-detail .send-hero-body {
    padding-top: 160px;
    padding-bottom: 64px;
  }

  .send-detail-content,
  .send-detail-faq {
    padding: 72px 40px;
  }

  .send-info-grid {
    grid-template-columns: 1fr;
  }

  .send-info-card {
    min-height: 0;
  }

  .send-content-block--rich-text,
  .send-detail-faq__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .send-content-block--rich-text>h2 {
    position: static;
  }
}

@media (max-width: 680px) {
  .page-send-detail .send-detail-hero {
    min-height: 620px;
  }

  .page-send-detail .send-hero-body {
    padding: 130px 20px 48px;
  }

  .page-send-detail .send-hero-headline {
    font-size: 38px;
  }

  .page-send-detail .send-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-send-detail .send-hero-actions .btn {
    justify-content: space-between;
    width: 100%;
  }

  .send-detail-content,
  .send-detail-faq {
    padding: 56px 20px;
  }

  .send-content-block--cards,
  .send-content-block--checklist,
  .send-content-block--table,
  .send-content-block--rich-text,
  .send-content-prose {
    padding: 28px 22px;
  }

  .send-detail-section-heading {
    margin-bottom: 28px;
  }

  .send-info-card {
    padding: 24px;
  }

  .send-checklist {
    grid-template-columns: 1fr;
  }

  .send-checklist__item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 20px;
  }

  .send-checklist__number {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .send-service-table {
    min-width: 680px;
  }

  .send-content-block--locator,
  .send-content-block--cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 24px;
  }

  .send-detail-faq__item summary {
    font-size: 18px;
  }

  .send-detail-footer {
    padding: 32px 20px;
  }

  .send-detail-footer__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .send-detail-footer__inner .btn {
    justify-content: space-between;
  }
}

/* Structured subpage content refresh */
.send-detail-content {
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 130, 32, .055), transparent 24%),
    linear-gradient(180deg, #f5f5f3 0%, #f8f8f7 100%);
}

.send-detail-inner {
  max-width: 1180px;
  gap: 0;
}

.send-content-block,
.send-content-prose {
  border-radius: 0;
}

.send-content-block--cards,
.send-content-block--checklist,
.send-content-block--table {
  padding: 84px 0;
  background: transparent;
}

.send-content-block--cards:first-child,
.send-content-block--checklist:first-child,
.send-content-block--table:first-child {
  padding-top: 0;
}

.send-content-block--cards + .send-content-block,
.send-content-block--checklist + .send-content-block,
.send-content-block--table + .send-content-block,
.send-content-block--rich-text + .send-content-block,
.send-content-block--locator + .send-content-block,
.send-content-block--cta + .send-content-block {
  margin-top: 18px;
}

/* Fineline over structured-content headlines (brand manual):
   square ends, headline colour (currentColor), length follows the type-area /
   column width, weight scales with the headline font-size. The heading wrapper
   adopts the headline font-size so that --fineline-weight (em) resolves against
   the headline; every child of the wrapper sets its own explicit font-size. */
.send-detail-section-heading {
  max-width: 760px;
  gap: 16px;
  margin-bottom: 44px;
  font-size: clamp(34px, 3vw, 46px);
}

.send-detail-section-heading::before,
.send-content-block--rich-text > h2::before {
  align-self: stretch;
  height: var(--fineline-weight);
  border-radius: 0;
  background: currentColor;
  content: "";
}

.send-detail-section-heading h2,
.send-content-block--rich-text > h2,
.send-content-block--locator h2,
.send-content-block--cta h2 {
  font-size: clamp(34px, 3vw, 46px);
  letter-spacing: -.045em;
}

.send-detail-section-heading p {
  max-width: 690px;
}

.send-info-grid {
  gap: 18px;
}

.send-info-card {
  position: relative;
  min-height: 280px;
  padding: 34px 32px 38px;
  overflow: hidden;
  border: 1px solid #dddeda;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 36px rgba(25, 27, 31, .04);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.send-info-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .22s ease;
}

.send-info-card:hover {
  border-color: rgba(245, 130, 32, .5);
  box-shadow: 0 20px 44px rgba(25, 27, 31, .08);
  transform: translateY(-4px);
}

.send-info-card:hover::before {
  transform: scaleX(1);
}

.send-info-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  margin-bottom: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff0e3;
  color: #d96809;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.send-info-card h3,
.send-checklist__item h3 {
  font-size: 25px;
  letter-spacing: -.025em;
}

.send-info-card .send-rich-text {
  color: #4c5560;
  font-size: 16px;
}

.send-content-block--checklist .send-detail-section-heading {
  margin-bottom: 50px;
}

.send-checklist {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.send-checklist__item {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 30px 28px 34px;
  flex-direction: column;
  gap: 30px;
  border: 1px solid #dddeda;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(25, 27, 31, .035);
}

.send-checklist__item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: -25px;
  width: 25px;
  height: 2px;
  background: rgba(245, 130, 32, .55);
  content: "";
}

.send-checklist__item:last-child:nth-child(odd) {
  grid-column: auto;
}

.send-checklist__number {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(245, 130, 32, .32);
  background: #fff4ea;
  color: #d96809;
}

.send-checklist__item p {
  color: #4c5560;
}

.send-content-block--rich-text {
  position: relative;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 76px;
  margin: 18px 0;
  padding: 64px;
  overflow: hidden;
  border: 1px solid #e3e3df;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(25, 27, 31, .045);
}

.send-content-block--rich-text::after {
  position: absolute;
  top: -76px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(245, 130, 32, .07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.send-content-block--rich-text > h2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.send-content-block--rich-text .send-rich-text {
  position: relative;
  z-index: 1;
  color: #404a55;
  font-size: 18px;
}

.send-content-block--table {
  padding-top: 92px;
}

.send-service-table-wrap {
  border-color: #dddeda;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 27, 31, .045);
}

.send-service-table th,
.send-service-table td {
  padding: 24px 26px;
}

.send-service-table thead th:first-child {
  border-top-left-radius: 15px;
}

.send-service-table thead th:last-child {
  border-top-right-radius: 15px;
}

.send-service-table tbody tr {
  transition: background-color .18s ease;
}

.send-service-table tbody tr:hover {
  background: #fff8f2;
}

.send-content-block--locator,
.send-content-block--cta {
  position: relative;
  z-index: 0;
  min-height: 330px;
  padding: 58px 56px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #242124;
  box-shadow: 0 22px 54px rgba(25, 27, 31, .1);
}

.send-content-block--locator::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  background-image:
    linear-gradient(90deg, #242124 0%, rgba(36, 33, 36, .12) 55%, rgba(36, 33, 36, .06) 100%),
    image-set(
      url('../assets/receive-locator-map-1024.avif') type('image/avif'),
      url('../assets/receive-locator-map-1024.webp') type('image/webp'),
      url('../assets/receive-locator-map.png') type('image/png')
    );
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  content: "";
  opacity: .82;
}

.send-content-block--locator::after,
.send-content-block--cta::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 52px solid rgba(245, 130, 32, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.send-content-block--locator > div,
.send-content-block--cta > div {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.send-content-block--locator > .btn,
.send-content-block--cta > .btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.send-content-block--cta {
  border: 0;
  background: #FF7A00;
  box-shadow: 0 22px 54px rgba(25, 27, 31, .1);
}

.send-content-block--cta::after {
  right: -48px;
  bottom: -118px;
  width: 430px;
  height: 430px;
  border: 0;
  border-radius: 0;
  background: url('../assets/footer-bg.svg') center / contain no-repeat;
  opacity: .18;
}

.send-content-block--cta .btn {
  border: 1px solid rgba(255, 255, 255, .18);
  background: #242124;
}

.send-detail-faq {
  padding-top: 112px;
  padding-bottom: 112px;
}

.send-downloads {
  padding: 96px var(--page-gutter);
  background: #fff;
}

.send-downloads__inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.send-download {
  display: flex;
  min-height: 100px;
  padding: 22px 24px;
  align-items: center;
  gap: 18px;
  border: 1px solid #dddeda;
  border-radius: 14px;
  background: #f8f8f7;
  color: var(--color-secondary);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.send-download:hover {
  border-color: rgba(245, 130, 32, .55);
  box-shadow: 0 14px 32px rgba(25, 27, 31, .07);
  transform: translateY(-2px);
}

.send-download__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.send-download__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 5px;
}

.send-download__copy strong {
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.send-download__copy span {
  color: #747b83;
  font-size: 13px;
}

.send-download__action {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.send-detail-faq__inner,
.send-detail-footer__inner {
  max-width: 1180px;
}

.send-detail-faq__inner {
  gap: 84px;
}

.send-detail-faq__item summary {
  padding: 27px 0;
}

@media (max-width: 1100px) {
  .send-content-block--cards,
  .send-content-block--checklist,
  .send-content-block--table {
    padding: 72px 0;
  }

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

  .send-info-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .send-checklist__item:not(:last-child)::after {
    display: none;
  }

  .send-content-block--locator::before {
    width: 55%;
    opacity: .65;
  }
}

@media (max-width: 1000px) {
  .send-detail-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .send-content-block--rich-text {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px;
  }

  .send-content-block--locator,
  .send-content-block--cta {
    padding: 48px 42px;
  }

  .send-detail-faq {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

@media (max-width: 680px) {
  .send-detail-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .send-content-block--cards,
  .send-content-block--checklist,
  .send-content-block--table {
    padding: 58px 0;
  }

  .send-content-block--cards:first-child,
  .send-content-block--checklist:first-child,
  .send-content-block--table:first-child {
    padding-top: 0;
  }

  .send-detail-section-heading {
    margin-bottom: 32px;
    /* keep the fineline weight locked to the mobile headline size */
    font-size: 32px;
  }

  .send-detail-section-heading h2,
  .send-content-block--rich-text > h2,
  .send-content-block--locator h2,
  .send-content-block--cta h2 {
    font-size: 32px;
  }

  .send-info-grid {
    grid-template-columns: 1fr;
  }

  .send-info-card,
  .send-info-card:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 0;
    padding: 30px 26px 32px;
  }

  .send-info-card__index {
    margin-bottom: 24px;
  }

  .send-checklist {
    gap: 14px;
  }

  .send-checklist__item {
    min-height: 0;
    padding: 26px 24px 30px;
    gap: 22px;
  }

  .send-content-block--rich-text {
    margin: 10px 0;
    padding: 34px 26px;
    border-radius: 16px;
  }

  .send-content-block--rich-text > h2 {
    gap: 18px;
  }

  .send-content-block--rich-text .send-rich-text {
    font-size: 16px;
  }

  .send-service-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .send-service-table {
    display: block;
    min-width: 0;
  }

  .send-service-table thead {
    display: none;
  }

  .send-service-table tbody {
    display: grid;
    gap: 14px;
  }

  .send-service-table tr {
    display: block;
    padding: 22px;
    border: 1px solid #dddeda;
    border-radius: 14px;
    background: #fff;
  }

  .send-service-table th,
  .send-service-table td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    padding: 10px 0;
    border: 0;
  }

  .send-service-table th::before,
  .send-service-table td::before {
    color: #7a8189;
    content: attr(data-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .send-content-block--locator,
  .send-content-block--cta {
    min-height: 0;
    padding: 38px 28px;
    border-radius: 18px;
  }

  .send-content-block--locator {
    padding-bottom: 210px;
  }

  .send-content-block--locator::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 190px;
    background-image:
      linear-gradient(180deg, #242124 0%, rgba(36, 33, 36, .18) 48%, rgba(36, 33, 36, .06) 100%),
      image-set(
        url('../assets/receive-locator-map-600.avif') type('image/avif'),
        url('../assets/receive-locator-map-600.webp') type('image/webp'),
        url('../assets/receive-locator-map.png') type('image/png')
      );
    background-position: center, center;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
    opacity: .78;
  }

  .send-content-block--locator > .btn,
  .send-content-block--cta > .btn {
    justify-content: space-between;
    width: 100%;
  }

  .send-content-block--cta::after {
    right: -92px;
    bottom: -76px;
    width: 310px;
    height: 310px;
    opacity: .15;
  }

  .send-downloads {
    padding: 64px 20px;
  }

  .send-downloads__list {
    grid-template-columns: 1fr;
  }

  .send-download {
    align-items: flex-start;
    padding: 20px;
  }

  .send-download__action {
    display: none;
  }

  .send-detail-faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .send-info-card,
  .send-info-card::before,
  .send-service-table tbody tr {
    transition: none;
  }
}

/* ==============================================
   FAQ DIRECTORY
   Dedicated CMS-driven support page.
   ============================================== */

.faq-page__hero {
  position: relative;
  overflow: hidden;
  padding: 190px var(--page-gutter) 104px;
  color: #fff;
  background: var(--color-primary);
}

.faq-page__hero::after {
  position: absolute;
  right: max(-120px, calc((100vw - var(--container-max)) / 2 - 120px));
  bottom: -320px;
  width: 760px;
  height: 760px;
  background: url('../assets/footer-bg.svg') center / contain no-repeat;
  content: '';
  filter: brightness(0) invert(1);
  opacity: .12;
  pointer-events: none;
  transform: rotate(-12deg);
}

.faq-page__hero-inner,
.faq-page__section-inner,
.faq-page__results-inner,
.faq-page__contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.faq-page__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-page__eyebrow,
.faq-page__section-kicker {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.faq-page__eyebrow {
  color: rgba(255, 255, 255, .78);
}

.faq-page__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.faq-page__intro {
  max-width: 760px;
  margin: 24px 0 40px;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
  line-height: 1.55;
}

.faq-page__search {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(900px, 100%);
  min-height: 72px;
  padding: 10px 10px 10px 24px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(102, 47, 0, .18);
}

.faq-page__search-icon {
  width: 28px;
  height: 28px;
}

.faq-page__search-input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  outline: 0;
  color: var(--color-secondary);
  background: transparent;
  font: 600 18px/1.4 var(--font);
}

.faq-page__search-input::placeholder {
  color: rgba(36, 31, 32, .48);
}

.faq-page__search-submit {
  min-height: 50px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-secondary);
  cursor: pointer;
  font: 700 16px/1 var(--font);
  transition: transform .18s ease, box-shadow .18s ease;
}

.faq-page__search-submit:hover {
  box-shadow: 0 10px 22px rgba(36, 31, 32, .2);
  transform: translateY(-1px);
}

.faq-page__results-bar {
  padding: 22px var(--page-gutter);
  border-bottom: 1px solid rgba(36, 31, 32, .1);
  background: #fff;
}

.faq-page__results-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-page__results-inner p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.faq-page__results-inner a {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.faq-page__featured,
.faq-page__directory,
.faq-page__empty,
.faq-page__contact {
  padding: 104px var(--page-gutter);
}

.faq-page__featured {
  background: var(--color-bg-gray);
}

.faq-page__section-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.faq-page__section-heading {
  max-width: 650px;
}

.faq-page__section-heading--wide {
  max-width: 780px;
}

.faq-page__section-kicker {
  color: var(--color-primary);
}

.faq-page__section-heading h2,
.faq-page__contact h2,
.faq-page__empty-card h2 {
  margin: 0;
  color: var(--color-secondary);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.faq-page__section-heading > p:last-child,
.faq-page__contact p,
.faq-page__empty-card p {
  margin: 18px 0 0;
  color: rgba(36, 31, 32, .7);
  font-size: 18px;
  line-height: 1.6;
}

.faq-page__accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-page__item {
  border: 1px solid rgba(36, 31, 32, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(36, 31, 32, .035);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-page__item[open] {
  border-color: rgba(255, 122, 0, .3);
  box-shadow: 0 12px 34px rgba(36, 31, 32, .07);
}

.faq-page__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  color: var(--color-secondary);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.faq-page__item summary img {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  transition: transform .22s ease;
}

.faq-page__item[open] summary img {
  transform: rotate(180deg);
}

.faq-page__answer {
  padding: 0 76px 26px 26px;
  color: rgba(36, 31, 32, .74);
  font-size: 16px;
  line-height: 1.7;
}

.faq-page__answer > :first-child {
  margin-top: 0;
}

.faq-page__answer > :last-child {
  margin-bottom: 0;
}

.faq-page__directory {
  background: #fff;
}

.faq-page__category-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-page__category-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: start;
  gap: 16px;
  min-height: 126px;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--color-secondary);
  background: var(--color-bg-gray);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-page__category-link:hover {
  border-color: rgba(255, 122, 0, .26);
  box-shadow: 0 14px 30px rgba(36, 31, 32, .07);
  transform: translateY(-3px);
}

.faq-page__category-link > img {
  width: 42px;
  height: 42px;
}

.faq-page__category-link > span:not(.faq-page__category-arrow) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-page__category-link strong {
  font-size: 17px;
  line-height: 1.35;
}

.faq-page__category-link small {
  color: rgba(36, 31, 32, .65);
  font-size: 14px;
  line-height: 1.45;
}

.faq-page__category-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-primary);
  background: #fff;
  font-size: 17px;
  font-weight: 800;
}

.faq-page__categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-page__category {
  display: grid;
  grid-template-columns: minmax(260px, .4fr) minmax(0, 1fr);
  gap: 48px;
  padding: 40px;
  border-radius: 20px;
  background: var(--color-bg-gray);
  scroll-margin-top: 120px;
}

.faq-page__category-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.faq-page__category-icon {
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff;
}

.faq-page__category-icon img {
  width: 30px;
  height: 30px;
}

.faq-page__category-heading h3 {
  margin: 4px 0 0;
  font-size: 25px;
  line-height: 1.2;
}

.faq-page__category-heading p {
  margin: 12px 0 0;
  color: rgba(36, 31, 32, .68);
  font-size: 15px;
  line-height: 1.55;
}

.faq-page__category-empty {
  align-self: center;
  margin: 0;
  padding: 20px 24px;
  border: 1px dashed rgba(36, 31, 32, .2);
  border-radius: 14px;
  color: rgba(36, 31, 32, .62);
  background: rgba(255, 255, 255, .6);
}

.faq-page__empty {
  background: var(--color-bg-gray);
}

.faq-page__empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(36, 31, 32, .06);
  text-align: center;
}

.faq-page__empty-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
}

.faq-page__empty-card .btn {
  margin-top: 28px;
}

.faq-page__contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--color-secondary);
}

.faq-page__contact::after {
  position: absolute;
  right: -90px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  background: url('../assets/footer-bg.svg') center / contain no-repeat;
  content: '';
  filter: brightness(0) invert(1);
  opacity: .08;
  pointer-events: none;
}

.faq-page__contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.faq-page__contact-inner > div {
  max-width: 760px;
}

.faq-page__contact h2,
.faq-page__contact p {
  color: #fff;
}

.faq-page__contact .faq-page__section-kicker {
  color: var(--color-primary);
}

.faq-page__contact .btn {
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  .faq-page__hero,
  .faq-page__featured,
  .faq-page__directory,
  .faq-page__empty,
  .faq-page__contact {
    padding-right: 40px;
    padding-left: 40px;
  }

  .faq-page__hero {
    padding-top: 160px;
    padding-bottom: 80px;
  }

  .faq-page__results-bar {
    padding-right: 40px;
    padding-left: 40px;
  }

  .faq-page__category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-page__category {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .faq-page__hero,
  .faq-page__featured,
  .faq-page__directory,
  .faq-page__empty,
  .faq-page__contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-page__hero {
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .faq-page__hero::after {
    right: -220px;
    bottom: -230px;
    width: 540px;
    height: 540px;
  }

  .faq-page__title {
    font-size: 42px;
  }

  .faq-page__intro {
    margin: 18px 0 28px;
    font-size: 16px;
  }

  .faq-page__search {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .faq-page__search-icon {
    width: 22px;
    height: 22px;
  }

  .faq-page__search-input {
    font-size: 15px;
  }

  .faq-page__search-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .faq-page__results-bar {
    padding: 18px 20px;
  }

  .faq-page__results-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .faq-page__featured,
  .faq-page__directory,
  .faq-page__empty,
  .faq-page__contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .faq-page__section-inner {
    gap: 30px;
  }

  .faq-page__section-heading h2,
  .faq-page__contact h2,
  .faq-page__empty-card h2 {
    font-size: 30px;
  }

  .faq-page__section-heading > p:last-child,
  .faq-page__contact p,
  .faq-page__empty-card p {
    margin-top: 12px;
    font-size: 16px;
  }

  .faq-page__item summary {
    gap: 14px;
    padding: 19px 18px;
    font-size: 16px;
  }

  .faq-page__item summary img {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .faq-page__answer {
    padding: 0 18px 20px;
    font-size: 15px;
  }

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

  .faq-page__category-link {
    min-height: 0;
    padding: 20px;
  }

  .faq-page__category {
    gap: 24px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .faq-page__category-heading {
    gap: 14px;
  }

  .faq-page__category-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .faq-page__category-heading h3 {
    font-size: 21px;
  }

  .faq-page__empty-card {
    padding: 36px 22px;
  }

  .faq-page__contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .faq-page__contact .btn {
    justify-content: space-between;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page__search-submit,
  .faq-page__item,
  .faq-page__item summary img,
  .faq-page__category-link {
    transition: none;
  }
}

/* For Business CMS overview — kept after legacy page styles so the CMS layout wins. */
.page-business .hero--business.has-custom-business-hero::before {
  background-image: var(--business-overview-hero-image);
}

/* Responsive CMS media. Regular picture wrappers do not affect existing grid
   and flex layouts; hero wrappers become the positioned visual layer. */
.responsive-picture {
  display: contents;
}

.responsive-picture--homepage-hero,
.responsive-picture--send-hero,
.responsive-picture--receive-hero,
.responsive-picture--business-hero,
.responsive-picture--detail-hero,
.responsive-picture--career-hero {
  position: absolute;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.has-responsive-hero::before,
.career-detail-hero.has-responsive-hero::before {
  background-image: none !important;
}

.hero-responsive-image {
  position: absolute;
  display: block;
  max-width: none;
}

.responsive-picture--homepage-hero {
  top: -10px;
  right: 0;
  left: 0;
  height: 749px;
}

.responsive-picture--homepage-hero .hero-responsive-image {
  bottom: 0;
  left: 50%;
  width: 116.33%;
  height: auto;
  transform: translateX(-50%);
}

.responsive-picture--send-hero {
  top: -32px;
  left: -28px;
  width: calc(100% + 56px);
  height: 805px;
}

.responsive-picture--send-hero .hero-responsive-image {
  top: -3.94px;
  left: 25.6px;
  width: 100.82%;
  height: 100.8%;
  object-fit: fill;
}

.responsive-picture--receive-hero {
  inset: 0 0 auto;
  height: 750px;
}

.responsive-picture--receive-hero .hero-responsive-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.responsive-picture--business-hero {
  inset: 0 0 auto;
  height: 750px;
}

.responsive-picture--business-hero .hero-responsive-image {
  top: -29.37%;
  left: 0;
  width: 100%;
  height: 153.6%;
  object-fit: fill;
}

.responsive-picture--detail-hero,
.responsive-picture--career-hero {
  inset: 0;
}

.responsive-picture--detail-hero .hero-responsive-image,
.responsive-picture--career-hero .hero-responsive-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1440px) {
  .responsive-picture--homepage-hero .hero-responsive-image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1200px) {
  .responsive-picture--send-hero,
  .responsive-picture--receive-hero,
  .responsive-picture--business-hero {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .responsive-picture--send-hero .hero-responsive-image,
  .responsive-picture--receive-hero .hero-responsive-image,
  .responsive-picture--business-hero .hero-responsive-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .responsive-picture--send-hero .hero-responsive-image {
    object-position: center 30%;
  }
}

.page-business .solutions-cards-section--business {
  min-height: 0;
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-business .stats-section--business-cms {
  padding-bottom: 96px;
  scroll-margin-top: 120px;
}

.page-business .stats-section--business-cms .stats-heading {
  max-width: 1000px;
  text-align: center;
  white-space: normal;
}

.page-business .partnership-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.page-business .partnership-path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
  padding: 40px;
  border: 1px solid rgba(36, 31, 32, .14);
  border-radius: 16px;
  background: #f7f7f5;
}

.page-business .partnership-path-card__title {
  color: var(--color-secondary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1.15;
}

.page-business .partnership-path-card__description {
  flex: 1;
  color: rgba(36, 31, 32, .8);
  font-size: 18px;
  line-height: 1.5;
}

.page-business .partnership-path-card__action {
  max-width: 100%;
  min-height: 48px;
  justify-content: space-between;
  white-space: normal;
}

.page-business .partnership-path-card__action:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

.page-business .stats-grid.stats-grid--business-cms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 253px));
  height: 538px;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight {
  min-width: 0;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.page-business .stats-grid--business-cms .stat-card-title {
  white-space: normal;
}

.page-business .stats-grid--business-cms .stat-card-desc {
  width: auto;
  max-width: 340px;
}

.page-business .services-list-grid.services-list-grid--business-cms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 666px));
  gap: 48px 72px;
}

.page-business .services-list-grid--business-cms .service-list-item {
  min-height: 0;
}

.page-business .erp-section--business-cms .erp-card {
  gap: 112px;
  min-height: 0;
  padding: clamp(64px, 7vw, 112px);
}

.page-business .erp-section--business-cms .erp-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .8fr);
  gap: clamp(48px, 5vw, 88px);
}

.page-business .erp-section--business-cms .erp-left {
  width: auto;
}

.page-business .erp-section--business-cms .erp-right {
  height: auto;
  min-height: 391px;
}

.page-business .erp-section--business-cms .erp-partners-strip {
  position: relative;
  top: auto;
  left: -40px;
  width: calc(100% + 80px);
  height: auto;
  gap: clamp(36px, 5vw, 96px);
}

.page-business .erp-section--business-cms .erp-partner-logo:nth-child(n) {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 62px;
}

@media (max-width: 1200px) {
  .page-business .stats-grid.stats-grid--business-cms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(3) {
    grid-column: 1 / -1;
  }

  .page-business .services-list-grid.services-list-grid--business-cms {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-business .erp-section--business-cms .erp-right {
    min-height: 0;
  }

  .page-business .erp-section--business-cms .erp-content {
    display: flex;
  }

  .page-business .erp-section--business-cms .erp-partners-strip {
    left: 0;
    width: 100%;
  }

  .page-business .erp-section--business-cms .erp-partner-logo:nth-child(n) {
    flex: 0 1 auto;
    width: auto;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .page-business .solutions-cards-section--business {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-business .stats-section--business-cms {
    padding-bottom: 64px;
    scroll-margin-top: 92px;
  }

  .page-business .partnership-paths {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-business .partnership-path-card {
    gap: 20px;
    padding: 24px;
  }

  .page-business .partnership-path-card__title {
    font-size: 24px;
  }

  .page-business .partnership-path-card__description {
    font-size: 16px;
  }

  .page-business .partnership-path-card__action {
    width: 100%;
  }

  .page-business .stats-grid.stats-grid--business-cms {
    grid-template-columns: 1fr;
  }

  .page-business .stats-grid--business-cms .stat-card--business-highlight:nth-child(3) {
    grid-column: auto;
  }

  .page-business .stats-grid--business-cms .stat-card-desc {
    max-width: none;
  }

  .page-business .stats-grid--business-cms .stat-card--orange-boxes {
    min-height: 300px;
  }

  .page-business .stats-grid--business-cms .stat-card--orange-boxes .stat-card-boxes-img {
    top: auto;
    right: -10px;
    bottom: -20px;
    width: 90px;
    opacity: .75;
  }

  .page-business .erp-section--business-cms .erp-card {
    gap: 56px;
  }

  .page-business .erp-section--business-cms .service-link-pill-left {
    min-width: 0;
  }

  .page-business .erp-section--business-cms .service-link-pill-left span {
    font-size: 18px;
    white-space: normal;
  }
}

/* Shared pickup-location finder. The iframe keeps using the existing
   locator data source; these styles only control its placement on pages. */
.locator-embed-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f4f4f4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.locator-embed-iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
}

.locator-map-block.send-content-block--locator {
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 0;
  width: min(1428px, calc(100vw - (2 * var(--page-gutter))));
  max-width: none;
  min-height: 0;
  padding: 0;
  scroll-margin-top: 112px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 22px 54px rgba(25, 27, 31, .1);
}

.locator-map-block.send-content-block--locator::before,
.locator-map-block.send-content-block--locator::after {
  display: none;
}

.locator-map-block.send-content-block--locator > .locator-map-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  max-width: none;
  padding: 48px 56px;
}

.locator-map-block__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.locator-map-block.send-content-block--locator h2,
.locator-map-block.send-content-block--locator p {
  color: var(--color-secondary);
}

.locator-map-block.send-content-block--locator .send-content-block__eyebrow {
  color: var(--color-primary);
}

.locator-map-block.send-content-block--locator .btn {
  flex: 0 0 auto;
  background: var(--color-secondary);
}

.locator-map-block.send-content-block--locator > .locator-embed-frame {
  display: block;
  width: 100%;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1328px) {
  .locator-embed-iframe {
    height: 880px;
  }
}

@media (max-width: 768px) {
  .locator-embed-iframe {
    height: 720px;
  }

  .locator-map-block.send-content-block--locator {
    width: calc(100vw - 40px);
    border-radius: 18px;
  }

  .locator-map-block.send-content-block--locator > .locator-map-block__header {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    padding: 34px 24px;
  }

  .locator-map-block.send-content-block--locator .btn {
    justify-content: space-between;
    width: 100%;
  }
}
