:root {
  --sa-primary: var(--brand);
  --sa-primary-hover: var(--brand-hover-home);
  --sa-primary-pressed: var(--brand-dark);
  --sa-deep-green: var(--green-800);
  --sa-deep-green-dark: var(--green-900);
  --sa-accent-green: var(--accent-green);
  --sa-white: var(--white);
  --sa-off-white: var(--surface-soft);
  --sa-stone-50: var(--surface-muted);
  --sa-stone-100: var(--stone-border-home);
  --sa-stone-200: var(--stone-control);
  --sa-ink: var(--black);
  --sa-charcoal: var(--charcoal);
  --sa-secondary: var(--text-body);
  --sa-tertiary: var(--text-muted);
  --sa-radius-sm: var(--radius-xs);
  --sa-radius-md: var(--radius-sm);
  --sa-radius-lg: var(--radius-md);
  --sa-radius-xl: var(--card-radius);
  --sa-shadow-sm: var(--card-shadow);
  --sa-shadow-md: var(--visual-shadow);
  --sa-card-border: var(--border-home);
  --sa-card-bg: var(--sa-white);
  --sa-dark-grid: var(--grid-on-dark);
  --sa-container-padding: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--button-height);
  padding: 0 28px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  border-radius: var(--sa-radius-md);
}

.btn--primary {
  color: var(--sa-white);
  background: var(--sa-deep-green);
}

.btn--primary:hover {
  background: var(--sa-deep-green-dark);
}

.btn.is-loading,
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

.btn--outlined-light {
  color: var(--sa-white);
  background: transparent;
  border: 1.5px solid var(--sa-white);
}

.btn--outlined-light:hover {
  background: var(--hover-on-dark);
}

.btn--outlined-dark {
  color: var(--sa-charcoal);
  background: transparent;
  border: 1.5px solid var(--sa-charcoal);
}

.btn--outlined-dark:hover,
.btn--outlined-dark:focus-visible {
  color: var(--sa-primary);
  border-color: var(--sa-primary);
}

.home-eyebrow {
  color: var(--sa-primary-pressed);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-eyebrow--on-dark {
  color: var(--sa-accent-green);
}

.home-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.home-section {
  padding: 96px 0;
}

.home-section--off-white {
  background: var(--sa-off-white);
}

.home-section--stone {
  background: var(--sa-stone-50);
}

.home-section--dark {
  color: var(--sa-white);
  background: var(--sa-charcoal);
}

.home-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.home-section-head .home-eyebrow {
  margin-bottom: 16px;
}

.home-heading-2 {
  margin: 0;
  color: var(--sa-ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0;
}

.home-body {
  margin: 0;
  color: var(--sa-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.home-link-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--sa-primary-pressed);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sa-primary-pressed);
  border-radius: 0;
}

.home-link-cta:hover,
.home-link-cta:focus-visible {
  color: var(--sa-primary-hover);
  border-bottom-color: var(--sa-primary-hover);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--sa-white);
  background:
    radial-gradient(circle at 78% 25%, rgba(125, 217, 87, 0.1), transparent 50%),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
}

.home-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--sa-dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--sa-dark-grid) 1px, transparent 1px);
  background-size: 64px 64px;
}

.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  min-height: 600px;
  margin: 0 auto;
  padding: 96px 40px 88px;
}

.home-hero__copy {
  max-width: 640px;
}

.home-hero__eyebrow {
  margin-bottom: 20px;
}

.home-hero__eyebrow--mobile,
.home-hero__title-mobile,
.home-hero__sub-mobile,
.home-hero__map--mobile,
.home-hero__stats--mobile {
  display: none;
}

.home-hero__title {
  max-width: 640px;
  margin: 0 0 24px;
  color: var(--sa-white);
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero__sub {
  max-width: 580px;
  margin: 0 0 40px;
  color: var(--text-on-dark-strong);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.home-hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
}

.home-hero__ctas .btn--primary {
  color: var(--sa-ink);
  background: var(--sa-accent-green);
}

.home-hero__ctas .btn--primary:hover,
.home-hero__ctas .btn--primary:focus-visible {
  color: var(--sa-ink);
  background: var(--sa-primary);
}

.home-hero__stats--desktop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 720px;
  padding-top: 28px;
  border-top: var(--border-on-dark-strong);
}

.home-hero__stat {
  padding-right: 24px;
}

.home-hero__stat-num {
  color: var(--sa-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.home-hero__stat-label {
  margin-top: 4px;
  color: var(--text-on-dark-medium);
  font-size: 13px;
  line-height: 18px;
}

.home-hero__map--desktop {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}

.home-hero__map--desktop svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-map__marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.home-map__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--sa-accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(72, 202, 50, 0.18);
}

.home-map__dot--main {
  width: 16px;
  height: 16px;
  background: var(--sa-primary);
  box-shadow: 0 0 0 12px rgba(75, 178, 9, 0.22), 0 0 0 24px rgba(75, 178, 9, 0.1);
}

.home-map__label--main {
  color: var(--sa-white);
  font-size: 13px;
  font-weight: 600;
}

.home-map__label--main small {
  display: block;
  margin-top: 2px;
  color: var(--text-on-dark-medium);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-band {
  padding: 32px 0;
  background: var(--sa-white);
  border-bottom: var(--border-home);
}

.home-band__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.home-band__eyebrow {
  margin-bottom: 16px;
  color: var(--sa-tertiary);
}

.home-band__text {
  max-width: 880px;
  margin: 0 auto 24px;
  color: var(--sa-secondary);
  font-size: 15px;
  line-height: 24px;
}

.home-band__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.home-band__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 37px;
  padding: 8px 18px;
  color: var(--sa-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  background: var(--sa-off-white);
  border: var(--border-home);
  border-radius: 999px;
  transition: color 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out;
}

.home-band__chip:hover,
.home-band__chip:focus-visible {
  color: var(--sa-white);
  background: var(--sa-ink);
  border-color: var(--sa-ink);
}

.home-band__chip-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--sa-primary);
  border-radius: 50%;
}

.home-band__chip:hover .home-band__chip-dot,
.home-band__chip:focus-visible .home-band__chip-dot {
  background: var(--sa-accent-green);
}

.home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about__eyebrow {
  margin-bottom: 16px;
}

.home-about__title {
  max-width: 520px;
  margin-bottom: 24px;
}

.home-about__text {
  max-width: 520px;
  margin-bottom: 20px;
}

.home-about__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--sa-ink);
  border-radius: var(--card-radius);
  box-shadow: var(--sa-shadow-md);
}

.home-about__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-bases {
  background: var(--sa-white);
}

.home-bases__mobile-text {
  display: none;
}

.home-bases__title,
.home-cars__title,
.home-export__title,
.home-documents__title,
.home-partner-form__title {
  margin-bottom: 16px;
}

.home-bases__intro,
.home-cars__intro,
.home-export__intro,
.home-documents__intro,
.home-partner-form__intro {
  font-size: 18px;
  line-height: 28px;
}

.home-bases__intro {
  max-width: 760px;
  margin: 0 auto;
}

.home-bases__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.home-base-card,
.home-car-card,
.home-export-market,
.home-doc-card,
.home-press-card,
.home-form-card,
.home-rep-card {
  background: var(--sa-card-bg);
  border: var(--sa-card-border);
}

.home-base-card,
.home-car-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
}

.home-base-card:nth-child(1),
.home-base-card:nth-child(2),
.home-base-card:nth-child(3) {
  grid-column: span 2;
}

.home-base-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.home-base-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.home-base-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-950) 100%);
}

.home-base-card__img,
.home-car-card__img,
.home-doc-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-base-card__photo--alt1 {
  background: linear-gradient(160deg, var(--green-750), var(--charcoal));
}

.home-base-card__photo--alt2 {
  background: linear-gradient(160deg, var(--green-800), var(--green-700));
}

.home-base-card__photo--alt3 {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
}

.home-base-card__photo--alt4 {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
}

.home-base-card__photo-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(var(--sa-dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--sa-dark-grid) 1px, transparent 1px);
  background-size: 32px 32px;
}

.home-base-card__body,
.home-car-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-base-card__body {
  padding: 24px;
}

.home-base-card__num {
  margin-bottom: 10px;
  color: var(--sa-secondary);
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-base-card__city {
  color: var(--sa-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.home-base-card__zh,
.home-car-card__zh {
  margin: 2px 0 12px;
  color: var(--sa-secondary);
}

.home-base-card__zh {
  font-size: 12px;
  line-height: 18px;
}

.home-base-card__desc,
.home-car-card__desc {
  margin: 0;
  color: var(--sa-secondary);
}

.home-base-card__desc {
  font-size: 14px;
  line-height: 22px;
}

.home-base-card__badge,
.home-rep-card__authorized {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  border-radius: var(--sa-radius-sm);
}

.home-base-card__badge {
  align-self: flex-start;
  margin-top: 20px;
  padding: 4px 10px;
  color: var(--sa-primary-pressed);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.8px;
  background: var(--brand-soft);
}

.home-base-card__badge::before,
.home-rep-card__authorized::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.home-base-card__badge::before {
  background: var(--sa-primary-pressed);
}

.home-bases__dots {
  display: none;
}

.home-bases__cta {
  margin-top: 32px;
  text-align: center;
}

.home-bases__cta a {
  color: var(--sa-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.home-bases__cta a:hover,
.home-bases__cta a:focus-visible {
  color: var(--sa-primary-hover);
}

.home-rep__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: stretch;
}

.home-rep__copy {
  padding-right: 8px;
}

.home-rep__title {
  width: calc(100% + 24px);
  max-width: 656px;
  margin: 16px 0 24px;
}

.home-rep__title span {
  color: var(--sa-primary);
}

.home-rep__body {
  margin-bottom: 16px;
}

.home-rep__body--mobile {
  display: none;
}

.home-rep__services-title {
  margin-top: 32px;
  margin-bottom: 4px;
}

.home-rep__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.home-rep__list li,
.home-rep-card__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--sa-ink);
}

.home-rep__list li {
  font-size: 15px;
  line-height: 24px;
}

.home-rep__list li::before,
.home-rep-card__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-color: var(--sa-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-rep__ctas {
  display: flex;
  gap: 12px;
}

.home-rep__ctas--mobile {
  display: none;
}

.home-rep-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--card-radius);
  box-shadow: var(--sa-shadow-sm);
}

.home-rep-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  text-align: center;
}

.home-rep-card__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--logo-row-height);
  margin-bottom: 12px;
}

.home-rep-card__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: var(--icon-size-md);
  color: var(--sa-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  background: var(--sa-ink);
  border-radius: var(--sa-radius-md);
}

.home-rep-card__logo-text {
  color: var(--sa-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0;
}

.home-rep-card__authorized {
  padding: 6px 12px;
  color: var(--sa-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.2px;
  background: var(--sa-deep-green);
}

.home-rep-card__authorized::before {
  background: var(--sa-white);
}

.home-rep-card__divider {
  height: 1px;
  margin: 8px 0 20px;
  background: var(--sa-stone-100);
}

.home-rep-card__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-rep-card__list li {
  font-size: 14px;
  line-height: 22px;
}

.home-rep-card__list li::before {
  width: 18px;
  height: 18px;
}

.home-rep-card__legal {
  margin-top: 24px;
  padding-top: 20px;
  color: var(--sa-secondary);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border-top: var(--border-home);
}

.home-cars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.home-car-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-700) 100%);
}

.home-car-card__photo--alt-1 {
  background: linear-gradient(160deg, var(--green-700), var(--green-950));
}

.home-car-card__photo--alt-2 {
  background: linear-gradient(160deg, var(--ink), var(--green-800));
}

.home-car-card__photo--alt-3 {
  background: linear-gradient(160deg, var(--charcoal), var(--green-800));
}

.home-car-card__photo--alt-4 {
  background: linear-gradient(160deg, var(--green-800), var(--green-950) 75%);
}

.home-car-card__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-strong);
  pointer-events: none;
}

.home-car-card__body {
  padding: 20px;
}

.home-car-card__title {
  color: var(--sa-ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.home-car-card__zh {
  font-size: 11px;
  line-height: 16px;
}

.home-car-card__desc {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}

.home-car-card__more {
  margin-top: 16px;
  color: var(--sa-primary-pressed);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.4px;
}

.home-export__world {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.home-export__map {
  display: block;
  width: 100%;
  height: auto;
  color: var(--sa-ink);
}

.home-export__legend {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 48px auto 0;
}

.home-export-market {
  padding: 16px 12px;
  text-align: center;
  border-radius: var(--sa-radius-lg);
}

.home-export-market__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
  background: var(--sa-stone-50);
  border-radius: var(--sa-radius-sm);
}

.home-export-market__name {
  color: var(--sa-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.home-export-market__sub {
  margin-top: 2px;
  color: var(--sa-tertiary);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.home-doc-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: var(--sa-radius-lg);
}

.home-doc-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, var(--sa-off-white) 0%, var(--sa-stone-100) 100%);
  border: var(--sa-card-border);
  border-radius: var(--sa-radius-md);
}

.home-doc-card__title {
  color: var(--sa-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.home-doc-card__zh {
  margin-top: 4px;
  color: var(--sa-tertiary);
  font-size: 12px;
  line-height: 18px;
}

.home-doc-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  line-height: 18px;
  border-top: var(--sa-card-border);
}

.home-doc-card__size {
  color: var(--sa-secondary);
}

.home-doc-card__download {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sa-primary-pressed);
  font-weight: 600;
  text-decoration: none;
}

.home-doc-card__download:hover,
.home-doc-card__download:focus-visible {
  color: var(--sa-primary-hover);
}

.home-partner__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.home-partner__anchor {
  position: absolute;
}

.home-partner__mobile-text,
.home-partner-icon__mobile {
  display: none;
}

.home-partner__title {
  max-width: 760px;
  margin: 16px auto 20px;
  color: var(--sa-white);
}

.home-partner__lead {
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--text-on-dark-body);
  font-size: 18px;
  line-height: 28px;
}

.home-partner__advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
  text-align: left;
}

.home-partner-advantage__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: var(--icon-size-md);
  margin-bottom: 20px;
  color: var(--sa-white);
}

.home-partner-advantage__icon svg {
  width: 32px;
  height: 32px;
}

.home-partner-advantage__title {
  margin: 0 0 10px;
  color: var(--sa-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.home-partner-advantage__desc {
  margin: 0;
  color: var(--text-on-dark-medium);
  font-size: 14px;
  line-height: 22px;
}

.home-partner__cta-wrap {
  text-align: center;
}

.home-partner__cta {
  color: var(--sa-ink);
  background: var(--sa-accent-green);
}

.home-partner__cta:hover,
.home-partner__cta:focus-visible {
  color: var(--sa-ink);
  background: var(--sa-primary);
}

.home-press {
  padding: 64px 0;
}

.home-press__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
}

.home-press__title {
  max-width: 540px;
  margin: 12px 0 16px;
  color: var(--sa-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
}

.home-press__text {
  max-width: 540px;
}

.home-press-card {
  padding: 28px;
  background: var(--sa-off-white);
  border-radius: var(--sa-radius-lg);
}

.home-press-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--sa-primary-pressed);
  background: rgba(75, 178, 9, 0.1);
  border-radius: var(--sa-radius-md);
}

.home-press-card__label {
  margin-bottom: 4px;
  color: var(--sa-secondary);
  font-size: 13px;
  line-height: 20px;
}

.home-press-card__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--sa-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.home-press-card__email a {
  color: var(--sa-primary);
  text-decoration: none;
}

.home-press-card__email a:hover,
.home-press-card__email a:focus-visible {
  color: var(--sa-primary-hover);
}

.home-press-card__note {
  color: var(--sa-tertiary);
  font-size: 13px;
  line-height: 20px;
}

.home-form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--card-radius);
  box-shadow: var(--sa-shadow-sm);
}

.home-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.home-form-row--full {
  grid-template-columns: 1fr;
}

.home-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-field__label {
  color: var(--sa-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
}

.home-field__label .required {
  margin-left: 2px;
  color: var(--sa-primary);
}

.home-field__input,
.home-field__select,
.home-field__textarea {
  width: 100%;
  color: var(--sa-tertiary);
  font-family: inherit;
  font-size: 15px;
  line-height: 22px;
  background: var(--sa-white);
  border: var(--sa-card-border);
  border-radius: var(--sa-radius-sm);
  outline: none;
}

.home-field__input,
.home-field__select {
  display: flex;
  align-items: center;
  height: var(--field-height);
  padding: 0 16px;
}

.home-field__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B9099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

.home-field__textarea {
  display: block;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.home-field__input::placeholder,
.home-field__textarea::placeholder {
  color: var(--sa-tertiary);
  opacity: 1;
}

.home-field__input:focus,
.home-field__select:focus,
.home-field__textarea:focus {
  color: var(--sa-ink);
  border-color: var(--sa-primary);
}

.home-field__combo {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}

.home-form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.home-form-submit .btn--primary {
  min-width: 280px;
}

.home-form-disclaimer {
  max-width: 560px;
  margin: 0;
  color: var(--sa-tertiary);
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.home-form-disclaimer a {
  color: var(--sa-primary-pressed);
  font-weight: 600;
  text-decoration: none;
}

.home-form-disclaimer a:hover,
.home-form-disclaimer a:focus-visible {
  color: var(--sa-primary-hover);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-container {
    padding: 0 32px;
  }

  .home-section {
    padding: 80px 0;
  }

  .home-section-head {
    margin-bottom: 48px;
  }

  .home-heading-2 {
    font-size: 30px;
    line-height: 38px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 32px;
    min-height: 560px;
    padding: 80px 32px 72px;
  }

  .home-hero__title {
    font-size: 44px;
    line-height: 52px;
  }

  .home-hero__sub {
    font-size: 17px;
    line-height: 26px;
  }

  .home-hero__ctas {
    margin-bottom: 44px;
  }

  .home-hero__stats--desktop {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  .home-band__inner {
    padding: 0 32px;
  }

  .home-about__grid,
  .home-rep__grid,
  .home-press__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about__visual {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .home-base-card,
  .home-base-card:nth-child(1),
  .home-base-card:nth-child(2),
  .home-base-card:nth-child(3),
  .home-base-card:nth-child(4),
  .home-base-card:nth-child(5) {
    grid-column: auto;
  }

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

  .home-export__legend {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
  }

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

  .home-partner__advantages {
    gap: 28px;
  }

  .home-form-card {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
  }

  .home-eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 1px;
  }

  .home-hero {
    min-height: 520px;
    padding: 40px var(--sa-container-padding) 48px;
    background:
      radial-gradient(circle at 78% 25%, rgba(125, 217, 87, 0.1), transparent 50%),
      linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  }

  .home-hero__pattern {
    background-image:
      linear-gradient(var(--grid-on-dark-soft) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-on-dark-soft) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .home-hero__inner {
    position: relative;
    z-index: 1;
    display: block;
    max-width: none;
    min-height: 0;
    padding: 0;
  }

  .home-hero__copy {
    max-width: none;
  }

  .home-hero__eyebrow--desktop,
  .home-hero__title-desktop,
  .home-hero__sub-desktop,
  .home-hero__map--desktop,
  .home-hero__stats--desktop {
    display: none;
  }

  .home-hero__eyebrow--mobile,
  .home-hero__title-mobile,
  .home-hero__sub-mobile,
  .home-hero__map--mobile,
  .home-hero__stats--mobile {
    display: block;
  }

  .home-hero__title {
    margin-bottom: 16px;
    color: var(--sa-white);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .home-hero__sub {
    margin-bottom: 32px;
    color: var(--text-on-dark-strong);
    font-size: 16px;
    line-height: 24px;
  }

  .home-hero__map--mobile {
    position: relative;
    height: 200px;
    margin-bottom: 32px;
    overflow: hidden;
    background: var(--grid-on-dark);
    border: var(--border-on-dark);
    border-radius: var(--card-radius);
  }

  .home-hero__map--mobile svg {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--text-on-dark-strong);
  }

  .home-hero-map__marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--sa-white);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transform: translate(-50%, -50%);
  }

  .home-hero-map__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--sa-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(72, 202, 50, 0.18);
  }

  .home-hero-map__dot--main {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 7px rgba(72, 202, 50, 0.25), 0 0 0 14px rgba(72, 202, 50, 0.08);
  }

  .home-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .home-hero__stats--mobile {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: var(--border-on-dark-strong);
  }

  .home-hero__stats-divider {
    background: rgb(255 255 255 / 15%);
  }

  .home-hero__stat-num {
    margin-bottom: 4px;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
  }

  .home-hero__stat-label {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .home-band {
    display: none;
  }

  .home-about {
    display: none;
  }

  .home-bases {
    padding: 64px 0;
    background: var(--sa-off-white);
  }

  .home-bases__container {
    padding: 0;
  }

  .home-bases__desktop-text {
    display: none;
  }

  .home-bases__mobile-text {
    display: inline;
  }

  .home-bases__head {
    max-width: none;
    margin-bottom: 24px;
    padding: 0 var(--sa-container-padding);
  }

  .home-bases__slider {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .home-bases__title {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 30px;
  }

  .home-bases__intro {
    max-width: 320px;
    font-size: 13px;
    line-height: 20px;
  }

  .home-bases__track {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: scroll;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding: 0 var(--sa-container-padding) 4px;
    scroll-padding-left: var(--sa-container-padding);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-bases__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
  }

  .home-bases__track::-webkit-scrollbar {
    display: none;
  }

  .home-base-card,
  .home-base-card:nth-child(1),
  .home-base-card:nth-child(2),
  .home-base-card:nth-child(3),
  .home-base-card:nth-child(4),
  .home-base-card:nth-child(5) {
    flex: 0 0 280px;
    grid-column: auto;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
  }

  .home-base-card__body {
    padding: 16px;
  }

  .home-base-card__photo {
    aspect-ratio: auto;
    height: 180px;
  }

  .home-base-card__num {
    margin-bottom: 8px;
    color: var(--sa-primary);
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.5px;
  }

  .home-base-card__city {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .home-base-card__desc {
    font-size: 13px;
    line-height: 18px;
  }

  .home-base-card__badge {
    margin-top: 12px;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.5px;
  }

  .home-base-card__badge::before {
    width: 5px;
    height: 5px;
  }

  .home-bases__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .home-bases__dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    cursor: pointer;
    background: var(--sa-stone-200);
    border-radius: 50%;
  }

  .home-bases__dots span.is-active {
    width: 8px;
    height: 8px;
    background: var(--sa-primary);
  }

  .home-bases__cta {
    margin-top: 32px;
  }

  .home-rep {
    padding: 64px 0;
  }

  .home-rep .home-container {
    padding: 0 var(--sa-container-padding);
  }

  .home-rep__grid {
    display: block;
  }

  .home-rep__copy {
    padding-right: 0;
  }

  .home-rep__title {
    width: auto;
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .home-rep__body {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 22px;
  }

  .home-rep__body--desktop,
  .home-rep__services-title,
  .home-rep__list,
  .home-rep__ctas--desktop {
    display: none;
  }

  .home-rep__body--mobile {
    display: block;
  }

  .home-rep-card {
    padding: 20px;
    margin-bottom: 24px;
  }

  .home-rep-card__top {
    align-items: flex-start;
    padding-bottom: 0;
    text-align: left;
  }

  .home-rep-card__logo {
    height: auto;
    margin-bottom: 12px;
  }

  .home-rep-card__logo-mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
    background: var(--sa-primary);
  }

  .home-rep-card__logo-text {
    font-size: 15px;
    line-height: 20px;
  }

  .home-rep-card__authorized {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 1px;
  }

  .home-rep-card__authorized::before {
    width: 5px;
    height: 5px;
  }

  .home-rep-card__divider {
    margin: 16px 0;
  }

  .home-rep-card__list {
    gap: 12px;
  }

  .home-rep-card__list li {
    gap: 12px;
    font-size: 13px;
    line-height: 20px;
  }

  .home-rep-card__list li::before {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .home-rep-card__legal {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 12px;
    line-height: 18px;
  }

  .home-rep__ctas--mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-cars {
    display: none;
  }

  .home-export {
    display: none;
  }

  .home-documents {
    display: none;
  }

  .home-partner {
    padding: 64px 0;
  }

  .home-partner__inner {
    padding: 0 var(--sa-container-padding);
    text-align: left;
  }

  .home-partner__desktop-text,
  .home-partner-icon__desktop {
    display: none;
  }

  .home-partner__mobile-text,
  .home-partner-icon__mobile {
    display: inline;
  }

  .home-partner__title {
    max-width: none;
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .home-partner__lead {
    max-width: none;
    margin-bottom: 32px;
    color: var(--text-on-dark-strong);
    font-size: 15px;
    line-height: 22px;
  }

  .home-partner__advantages {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .home-partner-advantage {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .home-partner-advantage__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    margin-bottom: 0;
  }

  .home-partner-advantage__icon svg {
    width: 24px;
    height: 24px;
  }

  .home-partner-advantage__title {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 20px;
  }

  .home-partner-advantage__desc {
    color: var(--text-on-dark-medium);
    font-size: 13px;
    line-height: 18px;
  }

  .home-press {
    display: none;
  }

  .home-partner-form {
    display: none;
  }
}
