:root {
  --color-bruma: #e9f0f4;
  --color-marina: #0b2639;
  --color-celeste: #aacfdf;
  --color-acero: #445766;
  --color-naranja: #f24e24;
  --color-yellow: var(--color-naranja);
  --color-black: var(--color-marina);
  --color-white: #ffffff;
  --color-gray-bar: var(--color-bruma);
  --color-gray-text: var(--color-acero);
  --color-gray-border: #d4dfe6;
  --color-naranja-soft: rgba(242, 78, 36, 0.18);
  --color-marina-soft: rgba(11, 38, 57, 0.08);
  --font-main: "IBM Plex Sans", system-ui, sans-serif;
  --font-brand: "Outfit", system-ui, sans-serif;
  --weight-body-light: 300;
  --weight-body-regular: 400;
  --weight-body-medium: 500;
  --weight-body-semibold: 600;
  --weight-title-regular: 400;
  --weight-title-medium: 500;
  --weight-title-semibold: 600;
  --weight-title-bold: 700;
  --max-width: 100%;
  --page-gutter: 2rem;
  --section-pad: clamp(5rem, 8vw, 6.25rem);
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-marina);
  background: var(--color-bruma);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-naranja);
  color: var(--color-marina);
  padding: 0.85rem 1.75rem;
  border-radius: 0;
}

.btn-link {
  background: none;
  color: var(--color-bruma);
  font-weight: 600;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.btn-link .arrow {
  transition: transform 0.2s;
}

.btn-link:hover .arrow {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-marina);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
  overflow: visible;
}

body.mobile-nav-open {
  overflow: hidden;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(11, 38, 57, 0.22);
  border-color: rgba(233, 240, 244, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  overflow: visible;
}

.logo-link {
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  overflow: visible;
}

.logo-svg {
  display: block;
  overflow: visible;
}

.logo-svg--header {
  height: clamp(48px, 5.5vw, 62px);
  width: auto;
  max-width: min(260px, 46vw);
}

.logo-svg--mark {
  display: none;
  height: 48px;
  width: 48px;
}

.logo-img {
  width: auto;
  display: block;
  background: transparent;
  filter: none;
  box-shadow: none;
  object-fit: contain;
}

.logo-img--header {
  height: clamp(48px, 5.5vw, 62px);
  width: auto;
  max-width: min(260px, 46vw);
}

.logo-img--mark {
  display: none;
  height: 48px;
  width: 48px;
  min-width: 0;
}

.logo-svg--footer-mark {
  display: none;
  height: 40px;
  width: 40px;
  overflow: visible;
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-border);
  padding: 1.5rem 0 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-gray-text);
  overflow: visible;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

@media (max-width: 767px) {
  .logo-svg--header {
    display: block;
    height: clamp(34px, 9.5vw, 42px);
    width: auto;
    max-width: min(280px, 72vw);
  }

  .logo-svg--mark {
    display: none;
  }

  .footer-brand .logo-svg--footer {
    display: block;
    height: clamp(38px, 10vw, 48px);
    width: auto;
    max-width: min(300px, 85vw);
  }

  .footer-brand .logo-svg--footer-mark {
    display: none;
  }

  .logo-img--header {
    display: none;
  }

  .logo-img--mark {
    display: none;
  }
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bruma);
  transition: color 0.2s;
}

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

.header-cta {
  display: inline-flex;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(233, 240, 244, 0.28);
  border-radius: 4px;
  background: rgba(11, 38, 57, 0.35);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 3px;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.lang-btn:hover {
  border-color: var(--color-gray-border);
}

.lang-btn.is-active {
  border-color: var(--color-naranja);
}

.lang-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

html[lang="zh-CN"] .section-title,
html[lang="zh-CN"] .nav-desktop a,
html[lang="zh-CN"] .nav-mobile a,
html[lang="zh-CN"] .btn-primary,
html[lang="zh-CN"] .btn-link span[data-i18n] {
  text-transform: none;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}

.header-mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.lang-dropdown--mobile {
  position: relative;
}

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.lang-dropdown__trigger:hover,
.lang-dropdown__trigger[aria-expanded="true"] {
  border-color: var(--color-naranja);
  background: rgba(233, 240, 244, 0.06);
}

.lang-dropdown__trigger .lang-flag {
  display: none;
}

.lang-dropdown__trigger[data-current-lang="en"] .lang-flag--en,
.lang-dropdown__trigger[data-current-lang="es"] .lang-flag--es,
.lang-dropdown__trigger[data-current-lang="zh"] .lang-flag--zh {
  display: block;
}

.lang-dropdown__menu {
  position: fixed;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 48px;
  padding: 0.55rem 0.4rem 0.65rem;
  margin: 0;
  background: linear-gradient(180deg, #0d2d44 0%, var(--color-marina) 100%);
  border: 1px solid rgba(233, 240, 244, 0.16);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.lang-dropdown__menu[hidden] {
  display: none;
}

.lang-dropdown__menu .lang-btn {
  width: 40px;
  height: 30px;
}

.site-header.lang-dropdown-open {
  border-bottom-color: rgba(233, 240, 244, 0.12);
  box-shadow: 0 2px 16px rgba(11, 38, 57, 0.22);
}

.menu-toggle:hover span {
  opacity: 0.85;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-bruma);
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 95;
  background: rgba(11, 38, 57, 0.52);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

body.mobile-nav-open .nav-mobile-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #0d2d44 0%, var(--color-marina) 100%);
  border-top: 1px solid rgba(233, 240, 244, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transition:
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    visibility 0.38s ease;
}

.nav-mobile.is-open {
  max-height: min(88svh, 17.5rem);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile__panel {
  position: relative;
  padding: 0.35rem 0 0;
  --mobile-nav-indent: 0px;
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.25rem;
  width: 100%;
}

.nav-mobile__links a {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.75rem var(--page-gutter) 0.75rem var(--mobile-nav-indent);
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bruma);
  border-bottom: 1px solid rgba(233, 240, 244, 0.12);
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.nav-mobile__links a:hover,
.nav-mobile__links a:focus-visible {
  color: var(--color-celeste);
  padding-left: calc(var(--mobile-nav-indent) + 0.25rem);
  outline: none;
}

.nav-mobile__links a:last-child {
  border-bottom: none;
}

.nav-mobile__footer {
  margin-top: 0;
  padding: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.nav-mobile__cta {
  width: 100%;
  margin: 0;
  padding: 1.05rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border-radius: 0;
}

.nav-mobile a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bruma);
}

.hero {
  position: relative;
  min-height: clamp(520px, calc(100vh - var(--header-h) - 3.5rem), 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 38, 57, 0.45) 0%,
    rgba(11, 38, 57, 0.78) 100%
  );
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 46rem;
  margin-left: 0;
  margin-right: auto;
  padding-block: clamp(2.25rem, 4.5vw, 3.75rem);
  text-align: left;
}

.hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.25rem, 5.25vw, 3.35rem);
  font-weight: var(--weight-title-bold);
  line-height: 1.2;
  letter-spacing: 0.035em;
  margin-bottom: 1rem;
  color: var(--color-bruma);
}

.hero-title-line {
  display: block;
  color: var(--color-bruma);
}

.hero-title-line u,
.hero-title-line em {
  color: var(--color-celeste);
  text-decoration: none;
  font-style: normal;
}

.hero-subtitle {
  max-width: 34rem;
  margin-bottom: 2.5rem;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-bruma);
  opacity: 0.92;
}

.hero-title-line:empty {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.section-title {
  font-family: var(--font-brand);
  text-align: center;
  font-size: clamp(1.4rem, 3.15vw, 1.9rem);
  font-weight: var(--weight-title-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-marina);
  margin-bottom: 3rem;
}

.services {
  padding-top: clamp(0.85rem, 1.5vw, 1.15rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: var(--color-white);
}

.stats {
  background: var(--color-marina);
  padding: 0.7rem 0;
  border-block: 1px solid rgba(233, 240, 244, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.75rem;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(170, 207, 223, 0.32);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--color-celeste);
  flex-shrink: 0;
  opacity: 0.95;
  line-height: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.stat-icon--factory svg,
.stat-icon--truck svg {
  transform: translateY(-1.5px);
}

.stat-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  text-align: left;
  min-width: 0;
}

.stat-value {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.stat-prefix {
  margin-right: 0.02em;
  font-weight: 700;
}

.stat-number {
  display: inline-block;
  min-width: 2.4ch;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.stat-number[data-count="2000"] {
  min-width: 4.2ch;
}

.stat-label {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(233, 240, 244, 0.78);
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .stat-item {
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
  }

  .stat-label {
    letter-spacing: 0.06em;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 0.35rem 0;
  }

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

  .stat-item {
    justify-content: flex-start;
    min-height: 2.5rem;
    padding: 0.55rem 0.35rem;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(170, 207, 223, 0.32);
  }

  .stat-label {
    white-space: normal;
  }
}

.services .section-title {
  margin-bottom: clamp(0.85rem, 1.5vw, 1.2rem);
}

#industries {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: var(--color-bruma);
}

#about,
#contact,
#quoteForm {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75rem clamp(0.5rem, 1.2vw, 1rem);
  width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 0 1 calc((100% - 2 * 1rem) / 3);
  max-width: 13.5rem;
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 2px solid var(--color-celeste);
  border-radius: 50%;
  background: var(--color-bruma);
  padding: 0.55rem;
  flex-shrink: 0;
}

.service-item--clickable {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.35rem 0.25rem;
  width: 100%;
  border-radius: 12px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item--clickable .service-icon-wrap {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    border-width 0.28s ease;
  animation: service-icon-invite 2.2s ease-in-out infinite;
}

.service-item--clickable .service-label {
  transition:
    color 0.25s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item--clickable:hover,
.service-item--clickable:focus-visible {
  transform: translateY(-10px);
}

.service-item--clickable:hover .service-icon-wrap,
.service-item--clickable:focus-visible .service-icon-wrap {
  animation: none;
  transform: scale(1.1);
  border-width: 3px;
  border-color: var(--color-marina);
  box-shadow:
    0 0 0 6px var(--color-naranja-soft),
    0 16px 36px rgba(242, 78, 36, 0.28);
}

.service-item--clickable:hover .service-icon,
.service-item--clickable:focus-visible .service-icon {
  transform: scale(1.06);
}

.service-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-label {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.88rem, 0.55vw + 0.72rem, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: normal;
  color: var(--color-marina);
  text-decoration: none;
}

.service-label u {
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
}

.service-item--clickable:hover .service-label,
.service-item--clickable:focus-visible .service-label {
  color: var(--color-marina);
  transform: scale(1.03);
}

.service-item--clickable:hover .service-label u,
.service-item--clickable:focus-visible .service-label u {
  text-decoration: underline;
  text-decoration-color: var(--color-naranja);
}

.service-item--clickable:active .service-icon-wrap {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(242, 78, 36, 0.28);
}

.service-item--clickable:active {
  transform: translateY(-4px) scale(0.98);
}

@keyframes service-icon-invite {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 78, 36, 0.35);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(242, 78, 36, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-item--clickable .service-icon-wrap {
    animation: none;
  }

  .service-item--clickable:hover,
  .service-item--clickable:focus-visible {
    transform: translateY(-4px);
  }

  .service-item--clickable:hover .service-icon-wrap,
  .service-item--clickable:focus-visible .service-icon-wrap {
    transform: scale(1.04);
  }
}

.service-item--clickable:focus-visible {
  outline: 2px solid var(--color-celeste);
  outline-offset: 4px;
}

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.service-modal-dialog {
  position: relative;
  width: min(100%, 1100px);
  max-height: min(92vh, 680px);
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal-dialog--lg {
  width: min(100%, 1140px);
  max-height: min(94vh, 820px);
}

.service-modal-panel {
  display: none;
  grid-template-columns: 1fr;
  align-items: stretch;
  max-height: min(92vh, 680px);
  height: 100%;
  gap: 0;
}

.service-modal-dialog--lg .service-modal-panel {
  max-height: min(94vh, 820px);
}

.service-modal-panel.is-active {
  display: grid;
}

.service-modal-panel[hidden] {
  display: none !important;
}

.service-modal.is-open .service-modal-dialog {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-black);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s,
    transform 0.2s;
}

.service-modal-close svg {
  width: 18px;
  height: 18px;
}

.service-modal-close:hover {
  background: var(--color-white);
  transform: scale(1.05);
}

.service-modal-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #1a1a1a;
  margin: 0;
  padding: 0;
}

.service-modal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.service-modal-media img.service-modal-media-img--quality {
  object-position: 50% 30%;
}

.service-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

.service-modal-body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.service-modal-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-acero);
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--color-naranja);
}

.service-modal-body h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-naranja);
  color: var(--color-marina);
}

.service-modal-lead {
  color: var(--color-marina);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-modal-text {
  color: var(--color-gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-modal-list {
  list-style: none;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.service-modal-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-gray-text);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.service-modal-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: 800;
}

.service-modal-list--rich li {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.95rem;
}

.service-modal-list--rich li strong {
  color: var(--color-black);
  font-weight: 700;
}

.service-modal-list--rich li span {
  display: block;
}

.service-modal-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.25rem;
}

.service-modal-cta {
  width: 100%;
  border-radius: 8px;
  padding: 0.95rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .service-modal-media {
    flex: 0 0 auto;
    min-height: 150px;
    height: clamp(150px, 22svh, 190px);
    max-height: none;
    aspect-ratio: auto;
    background: #1a1a1a;
    margin-bottom: -1px;
  }

  .service-modal-media img {
    object-fit: cover;
    object-position: 50% 42%;
  }

  .service-modal-media img.service-modal-media-img--quality {
    object-position: 50% 32%;
  }

  .service-modal-media::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.35) 72%,
      rgba(255, 255, 255, 0.88) 88%,
      #fff 96%,
      #fff 100%
    );
  }
}

.industries {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.industries-carousel {
  --industries-gap: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industries-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  visibility: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.industries-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.industries-carousel.is-ready .industries-carousel-viewport {
  visibility: visible;
}

.industries-carousel-track {
  display: flex;
  gap: var(--industries-gap);
  will-change: transform;
}

.industries-carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.industries-carousel-btn:hover:not(:disabled) {
  border-color: var(--color-naranja);
  background: var(--color-naranja);
  color: var(--color-marina);
}

.industries-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.industry-tile {
  position: relative;
  flex: 0 0 var(--industry-tile-width, 0);
  width: var(--industry-tile-width, 0);
  min-width: var(--industry-tile-width, 0);
  max-width: var(--industry-tile-width, 0);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.industry-tile--merch {
  background: #e8ecef;
}

.industry-tile--merch img {
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.32);
  transform-origin: center 44%;
}

.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
}

.industry-label {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}

.trust {
  background: var(--color-bruma);
  padding-top: var(--section-pad);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.trust-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.trust-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-height: clamp(220px, 42vw, 420px);
  background: #1a2f3f;
}

.trust-visual__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transform-origin: center;
}

.trust-visual__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust-layout > .quote-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  background: var(--color-white);
}

.trust-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.trust-content-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.trust-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}

.trust-title-line {
  display: block;
}

.trust-title-line--accent {
  color: var(--color-yellow);
}

.trust-title-line--light {
  color: var(--color-white);
}

.trust-list {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-yellow);
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

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

.quote-card {
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-white);
  border: 1px solid var(--color-celeste);
  border-radius: 12px;
  box-shadow: 0 12px 40px var(--color-marina-soft);
}

.quote-card h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-marina);
}

.quote-subtitle {
  text-align: center;
  color: var(--color-acero);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.quote-form {
  position: relative;
}

.quote-form-grid {
  display: grid;
  gap: 1rem;
}

.quote-form-grid--2 {
  grid-template-columns: 1fr;
}

.quote-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quote-form .quote-field > input,
.quote-form .quote-field > select,
.quote-form .quote-field > textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid #c5d5df;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.quote-form .quote-field > input::placeholder,
.quote-form .quote-field > textarea::placeholder {
  color: var(--color-acero);
}

.quote-form .quote-field > input:focus,
.quote-form .quote-field > select:focus,
.quote-form .quote-field > textarea:focus {
  outline: none;
  border-color: var(--color-marina);
  box-shadow: 0 0 0 3px rgba(170, 207, 223, 0.45);
}

.quote-form .quote-field > input.is-invalid,
.quote-form .quote-field > select.is-invalid,
.quote-form .quote-field > textarea.is-invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15);
}

.quote-form .quote-field > select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.quote-form .quote-field > textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form > .quote-field + .quote-field,
.quote-form > .quote-form-grid + .quote-field {
  margin-top: 1rem;
}

.phone-input {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.phone-input__wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 3.05rem;
  background: var(--color-white);
  border: 1px solid #c5d5df;
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.phone-input:focus-within .phone-input__wrap,
.phone-input.is-open .phone-input__wrap {
  border-color: var(--color-marina);
  box-shadow: 0 0 0 3px rgba(170, 207, 223, 0.45);
}

.phone-input.is-invalid .phone-input__wrap {
  border-color: #d64545;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15);
}

.phone-input__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0 0.85rem 0 0.75rem;
  border: none;
  background: linear-gradient(180deg, #f8fbfc 0%, #eef4f7 100%);
  color: var(--color-marina);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.phone-input__trigger:hover,
.phone-input.is-open .phone-input__trigger {
  background: linear-gradient(180deg, #eef5f8 0%, #e3edf2 100%);
}

.phone-input__flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.25rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(11, 38, 57, 0.08),
    0 1px 2px rgba(11, 38, 57, 0.08);
  background: #fff;
}

.phone-input__flag-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-input__dial {
  min-width: 2.4rem;
  text-align: left;
}

.phone-input__chevron {
  flex-shrink: 0;
  color: var(--color-acero);
  transition: transform 0.2s ease;
}

.phone-input.is-open .phone-input__chevron {
  transform: rotate(180deg);
  color: var(--color-marina);
}

.phone-input__divider {
  width: 1px;
  align-self: stretch;
  background: #d4e2ea;
  margin: 0.55rem 0;
}

.phone-input__number {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  padding: 0.85rem 1rem;
  box-shadow: none;
  font-size: 0.98rem;
}

.phone-input__number:focus {
  box-shadow: none;
}

.phone-input__dropdown[hidden] {
  display: none !important;
}

.phone-input__dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid #c5d5df;
  border-radius: 12px;
  box-shadow:
    0 16px 40px rgba(11, 38, 57, 0.16),
    0 2px 8px rgba(11, 38, 57, 0.06);
  overflow: hidden;
  animation: phoneDropdownIn 0.18s ease;
}

@keyframes phoneDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-input__search-wrap {
  position: relative;
  border-bottom: 1px solid #e8f0f4;
  padding: 0.45rem 0.55rem 0.55rem;
}

.phone-input__search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-acero);
  pointer-events: none;
  z-index: 1;
}

.phone-input .phone-input__search {
  width: 100%;
  border: 1px solid #d4e2ea;
  border-radius: 8px;
  padding: 0.72rem 0.85rem 0.72rem 2.65rem;
  font-size: 0.9rem;
  background: #fafcfd;
  box-shadow: none;
}

.phone-input .phone-input__search:focus {
  box-shadow: 0 0 0 3px rgba(170, 207, 223, 0.35);
  outline: none;
  border-color: var(--color-marina);
  background: #fff;
}

.phone-input__list {
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #c5d5df transparent;
}

.phone-input__option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.62rem 0.7rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--color-black);
  cursor: pointer;
  transition: background 0.15s ease;
}

.phone-input__option:hover,
.phone-input__option.is-focused,
.phone-input__option:focus-visible {
  background: #eef5f8;
  outline: none;
}

.phone-input__option.is-selected {
  background: rgba(170, 207, 223, 0.28);
}

.phone-input__option-flag {
  display: inline-flex;
  width: 1.65rem;
  height: 1.25rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(11, 38, 57, 0.08);
}

.phone-input__option-name {
  font-weight: 500;
  color: var(--color-marina);
}

.phone-input__option-dial {
  color: var(--color-acero);
  font-weight: 700;
  font-size: 0.86rem;
}

@media (max-width: 767px) {
  .quote-form .quote-field > textarea {
    min-height: 6.5rem;
  }

  .phone-input__wrap {
    min-height: 2.85rem;
  }

  .phone-input__trigger {
    padding: 0 0.45rem 0 0.5rem;
    gap: 0.28rem;
  }

  .phone-input__flag-wrap {
    width: 1.35rem;
    height: 1.02rem;
  }

  .phone-input__dial {
    min-width: 0;
    font-size: 0.84rem;
  }

  .phone-input__chevron {
    width: 10px;
    height: 7px;
  }

  .phone-input__number {
    padding: 0.7rem 0.7rem 0.7rem 0.55rem;
    font-size: 1rem;
  }

  .phone-input__dropdown:not([hidden]) {
    position: fixed;
    left: max(0.85rem, env(safe-area-inset-left, 0.85rem));
    right: max(0.85rem, env(safe-area-inset-right, 0.85rem));
    top: auto;
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0.85rem));
    max-height: min(62vh, 420px);
    display: flex;
    flex-direction: column;
    z-index: 40;
  }

  .phone-input.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(11, 38, 57, 0.42);
    z-index: 35;
  }

  .phone-input__list {
    flex: 1 1 auto;
    max-height: none;
  }
}

.quote-form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.quote-form-feedback.is-success {
  color: #2e8b57;
}

.quote-form-feedback.is-error {
  color: #d64545;
}

.quote-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn-quote-submit {
  display: block;
  margin: 1.5rem auto 0;
  background: var(--color-naranja);
  color: var(--color-marina);
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-quote-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn-quote-submit:hover {
  background: #358f61;
  opacity: 1;
}

.quote-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  width: 100%;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-gray-text);
  cursor: pointer;
}

.quote-terms input[type="checkbox"] {
  margin: 0.15rem 0 0;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  padding: 0;
  border: 1px solid #c5d5df;
  border-radius: 3px;
  background: var(--color-white);
  box-shadow: none;
  accent-color: var(--color-marina);
  cursor: pointer;
}

.quote-terms span {
  flex: 1;
  min-width: 0;
}

.quote-terms a {
  color: #1a6fb5;
  text-decoration: underline;
}

.quote-terms a:hover {
  color: #155a94;
}

.quote-terms-break {
  display: none;
}

.quote-terms input.is-invalid {
  outline: 2px solid #d64545;
  outline-offset: 1px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.legal-modal-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(88vh, 640px);
  overflow: auto;
  background: var(--color-white);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.legal-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--color-gray-bar);
  color: var(--color-black);
  cursor: pointer;
}

.legal-modal-close svg {
  width: 16px;
  height: 16px;
}

.legal-modal-dialog h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 2rem 1rem 0;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--color-naranja);
  color: var(--color-marina);
}

.legal-modal-body {
  color: var(--color-acero);
  font-size: 0.9rem;
  line-height: 1.65;
}

.legal-modal-body h4 {
  color: var(--color-marina);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 1.1rem 0 0.4rem;
}

.legal-modal-body p {
  margin-bottom: 0.55rem;
}

.legal-modal-body .legal-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-style: italic;
  color: #777;
}

.site-footer {
  border-top: 1px solid var(--color-celeste);
  padding: 0.85rem 0 0;
  margin-top: 0;
  background: var(--color-bruma);
}

.footer-services-cta {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 1.75rem;
  justify-items: stretch;
  width: 100%;
}

.footer-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  min-width: 0;
  width: 100%;
  max-width: none;
}

.footer-group--left .footer-col--services,
.footer-group--left .footer-col--services h3 {
  text-align: center;
}

.footer-group--left .footer-col--social,
.footer-group--left .footer-col--social h3 {
  text-align: center;
}

.footer-group--left .footer-col--social .social-links--stack {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer-group--right {
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 1.5rem;
}

.footer-group--right .footer-col {
  text-align: center;
  width: 100%;
}

.footer-group--right .footer-col h3 {
  text-align: center;
}

.footer-group--right .footer-col--region .contact-item {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.footer-group--right .contact-phone-row {
  justify-content: center;
  gap: 0.65rem;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 0;
  overflow: visible;
}

.footer-brand .logo-link {
  min-height: auto;
}

.logo-svg--footer {
  height: clamp(44px, 5vw, 54px);
  width: auto;
  max-width: min(280px, 90vw);
  overflow: visible;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.25;
  white-space: nowrap;
}

.footer-col {
  min-width: 0;
}

.footer-col--social .social-links--stack {
  margin-top: 0;
}

.footer-col--social .social-links a {
  width: 3.5rem;
  height: 3.5rem;
  border: 1.5px solid var(--color-celeste);
  border-radius: 50%;
  background: #fff;
  color: var(--color-acero);
}

.footer-col--social .social-links a:hover {
  border-color: var(--color-marina);
  background: #fff;
  color: var(--color-marina);
  box-shadow: 0 0 0 3px var(--color-naranja-soft);
}

.footer-col--social .social-icon {
  width: 1.85rem;
  height: 1.85rem;
}

.footer-services {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  width: auto;
  overflow: visible;
}

.footer-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 0 0 auto;
  width: 3.5rem;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0.1rem 0 1.85rem;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--color-acero);
  font-family: inherit;
  text-align: center;
  position: relative;
  transition:
    color 0.2s ease,
    transform 0.25s ease;
}

.footer-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1.5px solid var(--color-celeste);
  border-radius: 50%;
  background: #fff;
  padding: 0.35rem;
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer-service-icon img {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  display: block;
}

.footer-service-label {
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-acero);
  white-space: nowrap;
  width: max-content;
  max-width: none;
  min-height: auto;
  opacity: 0;
  transform: translateX(-50%) translateY(0.2rem);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    color 0.2s ease;
  pointer-events: none;
}

@media (max-width: 640px) {
  .footer-services {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 0.65rem;
  }

  .footer-service {
    flex: 0 1 calc((100% - 1.3rem) / 3);
    max-width: 5.5rem;
    padding-bottom: 2.15rem;
  }

  .footer-service-label {
    font-size: 0.82rem;
    opacity: 1;
    transform: translateX(-50%);
    white-space: normal;
    max-width: 5.25rem;
    text-align: center;
  }
}

@media (hover: none) {
  .footer-service-label {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.footer-service:hover,
.footer-service:focus-visible {
  color: var(--color-marina);
  transform: translateY(-4px);
  outline: none;
  z-index: 1;
}

.footer-service:hover .footer-service-icon,
.footer-service:focus-visible .footer-service-icon {
  transform: scale(1.2);
  border-color: var(--color-marina);
  box-shadow: 0 0 0 4px var(--color-naranja-soft);
}

.footer-service:hover .footer-service-label,
.footer-service:focus-visible .footer-service-label {
  opacity: 1;
  transform: translateX(-50%);
  color: var(--color-marina);
  text-decoration: none;
}

.footer-col--region .contact-item a,
.footer-col--region .contact-address {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.footer-col--region .contact-icon-link {
  margin-top: 0;
  width: 1.35rem;
  height: 1.35rem;
}

.footer-col--region .contact-icon-link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-col--region .contact-chat-link {
  width: 32px;
  height: 32px;
}

.footer-col--region .contact-chat-icon {
  width: 18px;
  height: 18px;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.contact-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-gray-text);
  transition: color 0.2s;
}

.footer-col .footer-service-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-acero);
}

.footer-col a:hover {
  color: var(--color-black);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.contact-icon-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--color-acero);
  transition:
    color 0.2s,
    opacity 0.2s;
}

.contact-icon-link:hover {
  color: var(--color-marina);
  opacity: 0.9;
}

.contact-icon-link svg {
  display: block;
}

.contact-chat-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-border);
  color: var(--color-gray-text);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.contact-chat-link:hover {
  color: #ffffff;
}

.contact-chat-link--whatsapp:hover {
  border-color: #25d366;
  background: #25d366;
}

.contact-chat-link--wechat:hover {
  border-color: #07c160;
  background: #07c160;
}

.contact-chat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-gray-text);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links--stack {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-gray-border);
  border-radius: 50%;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.social-links a:hover {
  border-color: var(--color-naranja);
  background: var(--color-naranja);
  color: var(--color-marina);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-legal-copy,
.footer-legal-links {
  margin: 0;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
}

.footer-legal-links a {
  color: var(--color-gray-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  color: var(--color-black);
}

.footer-legal-sep {
  color: #b0b0b0;
}

.float-chat-stack {
  position: fixed;
  right: var(--page-gutter);
  bottom: var(--page-gutter);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.chat-float svg {
  width: 30px;
  height: 30px;
}

.chat-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.chat-float--wechat {
  background: #07c160;
}

.chat-float--whatsapp {
  background: #25d366;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 430;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.wechat-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.wechat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 38, 57, 0.55);
}

.wechat-modal__dialog {
  position: relative;
  width: min(100%, 22.5rem);
  padding: 1.6rem 1.35rem 1.35rem;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(11, 38, 57, 0.22);
  text-align: center;
}

.wechat-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #eef4f7;
  color: var(--color-marina);
  cursor: pointer;
}

.wechat-modal__dialog h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--color-marina);
}

.wechat-modal__hint {
  color: var(--color-acero);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.wechat-modal__id {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-marina);
  margin-bottom: 1.15rem;
}

.wechat-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wechat-modal__copy,
.wechat-modal__open {
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

.wechat-modal__copy {
  background: var(--color-white);
  color: var(--color-marina);
  border: 1px solid var(--color-celeste);
}

.wechat-modal__open {
  background: #07c160;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .service-modal-panel.is-active {
    grid-template-columns: 1.05fr 1.15fr;
    max-height: min(90vh, 560px);
  }

  .service-modal-dialog {
    max-height: min(90vh, 560px);
  }

  .service-modal-dialog--lg {
    max-height: min(94vh, 820px);
    min-height: min(78vh, 700px);
  }

  .service-modal-dialog--lg .service-modal-panel.is-active {
    max-height: min(94vh, 820px);
    min-height: min(78vh, 700px);
  }

  .service-modal-media {
    min-height: 100%;
    height: 100%;
  }

  .service-modal-media img {
    object-position: 52% 40%;
  }

  .service-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-block: clamp(1.75rem, 3vw, 2.5rem);
  }

  .service-modal-dialog:not(.service-modal-dialog--lg) .service-modal-body {
    justify-content: center;
  }

  .service-modal-cta {
    width: auto;
    min-width: 220px;
  }

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

  .services-grid {
    gap: 2rem 1.25rem;
  }

  .service-item {
    flex: 0 1 calc((100% - 2 * 1.25rem) / 3);
    max-width: 16rem;
  }

  .service-icon-wrap {
    width: 118px;
    height: 118px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
  }

  .service-label {
    font-size: clamp(0.95rem, 0.5vw + 0.78rem, 1.12rem);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }

  .footer-group--left,
  .footer-group--right {
    display: grid;
    width: 100%;
  }

  .footer-group--left {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
  }

  .footer-group--right {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    justify-items: stretch;
  }

  .footer-col {
    width: auto;
    min-width: 0;
    text-align: left;
  }

  .footer-col--services,
  .footer-col--services h3,
  .footer-col--social,
  .footer-col--social h3 {
    text-align: center;
  }

  .footer-col--region,
  .footer-col--region h3 {
    text-align: center;
  }

  .footer-col h3 {
    text-align: inherit;
  }

  .footer-col ul {
    display: inline-block;
    text-align: left;
  }

  .footer-col--social .social-links--stack {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .footer-col--region .contact-item {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo-link {
    justify-self: start;
    grid-column: 1;
  }

  .nav-desktop {
    display: flex;
    justify-self: center;
    grid-column: 2;
  }

  .header-actions {
    display: flex;
    justify-self: end;
    grid-column: 3;
  }

  .header-cta {
    display: inline-flex;
    justify-self: unset;
    grid-column: unset;
  }

  .menu-toggle {
    display: none;
    margin-left: 0;
  }

  .header-mobile-tools {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    column-gap: clamp(3.25rem, 5vw, 4.25rem);
    row-gap: 0;
    padding-top: 0.5rem;
    padding-bottom: 2.25rem;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .footer-group--left,
  .footer-group--right {
    display: grid;
    width: 100%;
    min-width: 0;
  }

  .footer-group--left {
    grid-template-columns: auto auto;
    column-gap: clamp(4rem, 7vw, 6rem);
    row-gap: 0;
    align-items: start;
    justify-content: center;
    justify-items: center;
  }

  .footer-group--right {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 2.5vw, 2.25rem);
    row-gap: 0;
    justify-items: stretch;
  }

  .footer-col {
    width: auto;
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .footer-col--services,
  .footer-col--social {
    grid-column: auto;
    text-align: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    justify-self: center;
  }

  .footer-col--services h3,
  .footer-col--social h3 {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1.12rem;
  }

  .footer-services {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    width: auto;
  }

  .footer-service {
    flex: 0 0 auto;
    width: 4.35rem;
    gap: 0;
    padding-bottom: 2.1rem;
  }

  .footer-service-icon {
    width: 4.35rem;
    height: 4.35rem;
    border-width: 2px;
    padding: 0.45rem;
  }

  .footer-service-icon img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .footer-service-label,
  .footer-col .footer-service-label {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .footer-col--social .social-links--stack {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.15rem;
  }

  .footer-col--social .social-links a {
    width: 4.35rem;
    height: 4.35rem;
    border-width: 2px;
  }

  .footer-col--social .social-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .footer-col--region {
    min-width: 0;
    max-width: none;
    text-align: center;
  }

  .footer-col--region h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.12rem;
  }

  .footer-col h3 {
    text-align: inherit;
    font-size: 1.12rem;
  }

  .footer-col ul {
    display: block;
    text-align: left;
  }

  .footer-col--region .contact-item {
    justify-content: center;
    align-items: center;
    margin-bottom: 0.85rem;
    gap: 0.8rem;
  }

  .footer-col--region .contact-item a,
  .footer-col--region .contact-address {
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
  }

  .footer-col--region .contact-icon-link {
    width: 1.4rem;
    height: 1.4rem;
  }

  .footer-col--region .contact-icon-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer-col--region .contact-chat-link {
    width: 34px;
    height: 34px;
  }

  .footer-col--region .contact-chat-icon {
    width: 18px;
    height: 18px;
  }

  .footer-col--social .social-links--stack {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
  }

  .footer-group--right .contact-phone-row {
    justify-content: center;
  }

  .services-grid {
    gap: 2.25rem 1.5rem;
  }

  .service-item {
    flex: 0 1 calc((100% - 5 * 1.5rem) / 6);
    max-width: 13.5rem;
  }

  .service-icon-wrap {
    width: 120px;
    height: 120px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
  }

  .service-label {
    font-size: clamp(0.95rem, 0.4vw + 0.8rem, 1.12rem);
    letter-spacing: 0.02em;
  }

  .footer-col--region .contact-item {
    margin-bottom: 0.8rem;
  }

  .trust {
    padding-top: clamp(1.25rem, 2.2vw, 1.85rem);
    padding-bottom: clamp(1.35rem, 2.2vw, 1.85rem);
    scroll-margin-top: var(--header-h);
  }

  .trust-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-celeste);
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--color-marina-soft);
  }

  .trust-visual {
    min-height: 100%;
    height: 100%;
    align-self: stretch;
  }

  .trust-layout > .quote-card {
    padding: clamp(1.35rem, 2.1vw, 2rem) clamp(1.35rem, 2vw, 1.85rem)
      clamp(1.5rem, 2.2vw, 2.1rem);
  }

  .trust-layout > .quote-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    margin-bottom: 0.4rem;
  }

  .trust-layout > .quote-card .quote-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .trust-layout > .quote-card .quote-form-grid {
    gap: 0.85rem;
  }

  .trust-layout > .quote-card .quote-form > .quote-field + .quote-field,
  .trust-layout > .quote-card .quote-form > .quote-form-grid + .quote-field {
    margin-top: 0.85rem;
  }

  .trust-layout > .quote-card .quote-form .quote-field > input,
  .trust-layout > .quote-card .quote-form .quote-field > select,
  .trust-layout > .quote-card .quote-form .quote-field > textarea {
    padding: 0.75rem 0.95rem;
    font-size: 0.92rem;
  }

  .trust-layout > .quote-card .quote-form .quote-field > textarea {
    min-height: 6.75rem;
    max-height: 11rem;
  }

  .trust-layout > .quote-card .phone-input__wrap {
    min-height: 2.85rem;
  }

  .trust-layout > .quote-card .phone-input__number {
    padding: 0.75rem 0.95rem;
    font-size: 0.92rem;
  }

  .trust-layout > .quote-card .quote-terms {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .trust-layout > .quote-card .btn-quote-submit {
    display: block;
    margin: 1.15rem auto 0;
    padding: 0.82rem 2.15rem;
    font-size: 0.85rem;
  }

  .site-footer {
    padding-top: clamp(1.1rem, 1.8vw, 1.45rem);
  }

  .trust-visual__bg::after {
    background: linear-gradient(
      to right,
      transparent 0%,
      transparent 28%,
      rgba(255, 255, 255, 0.35) 55%,
      rgba(255, 255, 255, 0.82) 74%,
      #fff 88%,
      #fff 100%
    );
  }

  .trust-content:not(.trust-content--visual) {
    align-self: stretch;
    padding-top: calc(clamp(1.5rem, 3vw, 2.25rem) + 1rem);
  }

  .trust-list {
    margin-top: auto;
    padding-top: 3.75rem;
    padding-bottom: 0.25rem;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    row-gap: 1rem;
  }

  .trust-list li {
    margin-bottom: 0;
    justify-content: flex-start;
    text-align: left;
  }

  html[lang="es"] .trust-content:not(.trust-content--visual) {
    padding-inline: clamp(1.1rem, 2vw, 1.65rem);
  }

  html[lang="es"] .trust-list {
    column-gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  html[lang="es"] .trust-list li {
    font-size: clamp(0.8rem, 0.72vw + 0.45rem, 0.86rem);
    gap: 0.45rem;
  }

  html[lang="es"] .trust-list li span {
    white-space: nowrap;
  }

  html[lang="es"] .check-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1023px) {
  .footer-group--left {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.75rem;
  }

  .footer-group--right {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .trust {
    padding-top: clamp(1.5rem, 5vw, 2.25rem);
    padding-bottom: clamp(1rem, 4vw, 1.5rem);
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-celeste);
    border-radius: 12px;
    box-shadow: 0 12px 40px var(--color-marina-soft);
  }

  .trust-visual {
    min-height: clamp(240px, 58vw, 380px);
    width: 100%;
    background: #fff;
    margin-bottom: -1px;
  }

  .trust-visual__bg::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 32%,
      rgba(255, 255, 255, 0.45) 62%,
      rgba(255, 255, 255, 0.92) 78%,
      #fff 88%,
      #fff 100%
    );
  }

  .trust-layout > .quote-card {
    margin-top: -1px;
    border: none;
    border-top: none;
    box-shadow: none;
    min-width: 0;
  }

  .quote-card .footer-services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0.85rem 0 0;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--color-white);
    color: var(--color-marina);
    border: 1px solid var(--color-celeste);
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease;
  }

  .quote-card .footer-services-cta:hover,
  .quote-card .footer-services-cta:focus-visible {
    background: rgba(233, 240, 244, 0.55);
    border-color: var(--color-celeste);
    outline: none;
  }

  .footer-col--services {
    display: none;
  }

  .site-footer {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .site-footer .footer-grid {
    padding-top: 0.85rem;
    gap: 1.25rem;
  }

  .footer-group--left {
    gap: 1rem;
  }

  .footer-col--social h3 {
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: clamp(1rem, 4.5vw, 1.35rem);
    --header-h: 72px;
    --section-pad: clamp(2.5rem, 7vw, 3.5rem);
  }

  body {
    overflow-x: clip;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .header-inner {
    height: var(--header-h);
    gap: 0.5rem;
  }

  .logo-link {
    min-height: 40px;
  }

  .logo-svg--header {
    height: clamp(34px, 9.5vw, 42px);
    max-width: min(280px, 72vw);
  }

  .footer-brand .logo-svg--footer {
    height: clamp(38px, 10vw, 48px);
    max-width: min(300px, 85vw);
  }

  .hero {
    min-height: clamp(460px, 78svh, 620px);
  }

  .hero .hero-content {
    text-align: center;
    margin-inline: auto;
    padding-block: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }

  .hero-subtitle {
    margin-inline: auto;
    margin-bottom: 1.75rem;
    font-size: clamp(0.9rem, 3.8vw, 1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

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

  .hero-actions .btn-link {
    justify-content: center;
  }

  .section-title {
    margin-bottom: 1.75rem;
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    letter-spacing: 0.07em;
    padding-inline: 0.25rem;
  }

  .services {
    padding-top: clamp(0.75rem, 3vw, 1rem);
    padding-bottom: clamp(1rem, 4vw, 1.5rem);
  }

  .services-grid {
    gap: 1.35rem 0.85rem;
  }

  .service-item {
    flex: 0 1 calc((100% - 0.85rem) / 2);
    max-width: none;
  }

  .service-icon-wrap {
    width: clamp(88px, 24vw, 104px);
    height: clamp(88px, 24vw, 104px);
  }

  .service-icon {
    width: clamp(52px, 14vw, 62px);
    height: clamp(52px, 14vw, 62px);
  }

  .service-label {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.2;
  }

  .service-item--clickable .service-icon-wrap {
    animation: none;
  }

  .industries {
    padding-block: var(--section-pad);
  }

  .industries-carousel {
    gap: 0.35rem;
  }

  .industries-carousel-track {
    --industries-gap: 0.75rem;
  }

  .industries-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .industry-label {
    font-size: clamp(0.78rem, 3vw, 0.88rem);
    bottom: 0.75rem;
    padding-inline: 0.35rem;
  }

  .trust-visual {
    min-height: clamp(180px, 48vw, 260px);
  }

  .quote-card {
    padding: 1.15rem 0.95rem 1.5rem;
    overflow: visible;
  }

  .quote-card h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
  }

  .quote-subtitle {
    margin-bottom: 1.1rem;
    font-size: clamp(0.82rem, 3.4vw, 0.9rem);
  }

  .quote-form .quote-field > input,
  .quote-form .quote-field > select,
  .quote-form .quote-field > textarea {
    font-size: 1rem;
    max-width: 100%;
    min-width: 0;
  }

  .quote-form > .quote-field + .quote-field,
  .quote-form > .quote-form-grid + .quote-field {
    margin-top: 0.8rem;
  }

  .quote-terms {
    align-items: flex-start;
    font-size: 0.74rem;
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .quote-terms-break {
    display: block;
  }

  .btn-quote-submit,
  .quote-card .footer-services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 0.95rem 1.1rem;
    font-size: 0.88rem;
  }

  .btn-quote-submit {
    margin-top: 1.15rem;
  }

  .quote-card .footer-services-cta {
    margin-top: 0.75rem;
  }

  .site-footer {
    padding-top: 0;
    border-top: none;
  }

  .footer-grid {
    gap: 1.1rem;
    padding-bottom: 1.25rem;
    padding-top: 0.65rem;
  }

  .footer-group {
    gap: 1rem;
  }

  .footer-col h3 {
    font-size: 0.95rem;
    white-space: normal;
    margin-bottom: 0.6rem;
  }

  .footer-services {
    flex-wrap: wrap;
    gap: 0.75rem 0.55rem;
    justify-content: center;
    max-width: 18rem;
    margin-inline: auto;
  }

  .footer-service {
    width: calc((100% - 1.1rem) / 3);
    max-width: 4.75rem;
    padding-bottom: 1.65rem;
  }

  .footer-service-icon {
    width: 100%;
    max-width: 3.35rem;
    height: 3.35rem;
    margin-inline: auto;
  }

  .footer-col--social .social-links--stack {
    gap: 0.85rem;
  }

  .footer-col--social .social-links a {
    width: 3.35rem;
    height: 3.35rem;
  }

  .footer-brand {
    margin-bottom: 0.85rem;
  }

  .float-chat-stack {
    right: max(0.7rem, env(safe-area-inset-right, 0.7rem));
    bottom: max(0.7rem, env(safe-area-inset-bottom, 0.7rem));
    gap: 0.5rem;
  }

  .chat-float {
    width: 46px;
    height: 46px;
  }

  .chat-float svg {
    width: 26px;
    height: 26px;
  }

  .service-modal {
    padding: 0.85rem 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .service-modal-dialog,
  .service-modal-dialog--lg {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    max-height: min(84svh, 84dvh);
    height: min(84svh, 84dvh);
    border-radius: 14px;
    overflow: hidden;
  }

  .service-modal-panel {
    display: none;
  }

  .service-modal-panel.is-active {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    max-height: none;
    overflow: hidden;
    gap: 0;
  }

  .service-modal-dialog--lg .service-modal-panel.is-active {
    min-height: 0;
    max-height: none;
    height: 100%;
  }

  .service-modal-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    margin-top: -1px;
    border-top: none;
    padding: 0.85rem 1.05rem 0.85rem;
    overflow: hidden;
    background: var(--color-white);
  }

  .service-modal-kicker,
  .service-modal-body h3 {
    flex-shrink: 0;
  }

  .service-modal-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.15rem;
  }

  .service-modal-actions {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.15rem;
    background: var(--color-white);
  }

  .service-modal-cta {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 0.9rem 1.1rem;
  }

  .service-modal-list--rich li {
    margin-bottom: 0.75rem;
  }

  .legal-modal {
    padding: 0.65rem;
  }

  .legal-modal-dialog {
    max-height: 90svh;
    overflow-y: auto;
  }
}

h1,
h2,
h3,
.hero h1,
.section-title,
.services .section-title,
.trust-content h2,
.quote-card h2,
.service-modal-dialog h3,
.service-modal-body h3,
.legal-modal-dialog h2,
.stat-value,
.footer-col h3,
.service-modal-kicker,
.service-label,
.header-cta,
.nav-desktop a,
.nav-mobile a,
.btn {
  font-family: var(--font-brand);
}

body,
p,
li,
label,
input,
select,
textarea,
.footer-col a,
.footer-col span,
.contact-address,
.hero-subtitle,
.stat-label,
.service-modal-lead,
.service-modal-list,
.service-modal-list li span,
.trust-list li,
.quote-form,
.quote-subtitle,
.legal-modal-body {
  font-family: var(--font-main);
}

body {
  font-weight: var(--weight-body-regular);
}

.hero-subtitle,
.quote-subtitle,
.footer-col a,
.contact-address,
.service-modal-list li span {
  font-weight: var(--weight-body-regular);
}

.stat-label,
.legal-modal-body {
  font-weight: var(--weight-body-light);
}

.service-modal-lead,
.trust-list li,
.quote-form label {
  font-weight: var(--weight-body-semibold);
}

.section-title,
.quote-card h2,
.service-modal-body h3,
.legal-modal-dialog h2,
.hero h1,
.stat-value {
  font-weight: var(--weight-title-bold);
}

.footer-col h3,
.nav-desktop a,
.nav-mobile a,
.service-label,
.btn,
.header-cta {
  font-weight: var(--weight-title-semibold);
  letter-spacing: 0.08em;
}

.service-modal-kicker {
  font-weight: var(--weight-title-semibold);
}

html[lang="zh-CN"] body,
html[lang="zh-CN"] p,
html[lang="zh-CN"] li,
html[lang="zh-CN"] label,
html[lang="zh-CN"] input,
html[lang="zh-CN"] select,
html[lang="zh-CN"] textarea,
html[lang="zh-CN"] .footer-col a,
html[lang="zh-CN"] .hero-subtitle,
html[lang="zh-CN"] .quote-subtitle,
html[lang="zh-CN"] .stat-label,
html[lang="zh-CN"] .service-modal-lead,
html[lang="zh-CN"] .service-modal-list,
html[lang="zh-CN"] .legal-modal-body {
  font-family: "IBM Plex Sans SC", "IBM Plex Sans", system-ui, sans-serif;
}
