:root {
  --cmid-green: #167c4a;
  --cmid-green-dark: #10663d;
  --cmid-red: #d5232f;
  --ink: #17212b;
  --muted: #66716c;
  --line: #e4e9e6;
  --white: #ffffff;
  --nav-height: 88px;
  --nav-width: 1440px;
  --focus: rgba(22, 124, 74, 0.28);
  --type-section-heading: clamp(36px, 3.7vw, 50px);
  --type-card-title: 16px;
  --type-card-body: 15.5px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  font-synthesis: none;
}

/* Approved shared header geometry: one effective size across every public shell. */
:root {
  --nav-height: 88px !important;
  --nav-width: 1440px !important;
}

body .site-header {
  position: sticky !important;
  top: 0 !important;
  height: var(--nav-height) !important;
  min-height: var(--nav-height) !important;
}

body .nav-container {
  width: min(calc(100% - 72px), var(--nav-width)) !important;
  height: var(--nav-height) !important;
  min-height: var(--nav-height) !important;
  grid-template-columns: 170px minmax(0, 1fr) auto !important;
  gap: 18px !important;
}

body .brand {
  width: 170px !important;
  height: var(--nav-height) !important;
  margin-left: 0 !important;
  padding: 0 !important;
}

body .brand__official-logo {
  width: auto !important;
  height: 54px !important;
  max-height: 54px !important;
}

body .desktop-navigation { gap: clamp(12px, 1.2vw, 18px) !important; }
body .nav-link { min-height: 44px !important; font-size: 13.5px !important; font-weight: 600 !important; }
body .nav-actions { gap: 10px !important; }
body .quote-button { width: auto !important; min-width: 125px !important; min-height: 44px !important; padding: 0 16px !important; border-radius: 8px !important; font-size: 13px !important; }

@media (min-width: 861px) and (max-width: 1180px) {
  body .nav-container { width: min(calc(100% - 40px), var(--nav-width)) !important; }
  body .nav-container { grid-template-columns: 130px minmax(0, 1fr) auto !important; gap: 10px !important; }
  body .brand { width: 130px !important; }
  body .brand__official-logo { height: 42px !important; max-height: 42px !important; }
  body .desktop-navigation { gap: 7px !important; }
  body .nav-link { font-size: 10.5px !important; }
  body .nav-actions { gap: 7px !important; }
  body .quote-button { min-width: 95px !important; min-height: 42px !important; padding: 0 8px !important; font-size: 10.5px !important; }
}

@media (max-width: 860px) {
  :root { --nav-height: 68px !important; }
  body .nav-container { width: min(calc(100% - 32px), var(--nav-width)) !important; }
  body .brand { width: 180px !important; margin-left: 0 !important; }
  body .brand__official-logo { height: 50px !important; max-height: 50px !important; }
  body .mobile-navigation { top: var(--nav-height) !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #f7faf8;
}

button, a { font: inherit; }

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

button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--cmid-green);
  transition: top 160ms ease;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(228, 233, 230, 0.28);
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 7px 22px rgba(20, 43, 31, 0.075);
  backdrop-filter: blur(16px);
}

.nav-container {
  width: min(calc(100% - 58px), var(--nav-width));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 195px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 195px;
  height: 58px;
  margin-left: -21px;
}

.brand__official-logo {
  display: block;
  width: auto;
  height: 56px;
}

.desktop-navigation {
  height: 100%;
  justify-self: start;
  display: flex;
  align-items: stretch;
  gap: 29px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4d5953;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 1.5px;
  border-radius: 4px;
  background: var(--cmid-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover, .nav-link.is-active { color: var(--cmid-green); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-dropdown { position: relative; display: flex; }

.nav-dropdown__trigger > svg, .chevron {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.nav-dropdown__trigger[aria-expanded="true"] > svg,
.language__trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.nav-dropdown__panel, .language__menu {
  position: absolute;
  top: calc(100% - 14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(18, 48, 32, 0.12);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.nav-dropdown__panel {
  left: -24px;
  z-index: 1200;
  width: 220px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-nav-menu {
  display: grid;
  gap: 0;
  padding: 8px 10px 10px;
}

.product-nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: #405048;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.product-nav-menu a + a {
  border-top: 1px solid rgba(29, 63, 45, 0.08);
}

.product-nav-menu a:hover,
.product-nav-menu a:focus-visible,
.product-nav-menu a.is-current {
  color: var(--cmid-green);
  background: #f0f7f3;
}

.product-mobile-menu a {
  display: block;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(29, 63, 45, 0.08);
  color: #52615a;
  font-size: 15px;
  font-weight: 600;
}

.product-mobile-menu a:hover,
.product-mobile-menu a:focus-visible,
.product-mobile-menu a.is-current {
  color: var(--cmid-green);
  background: #f5faf7;
}

.nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__panel,
.language__trigger[aria-expanded="true"] + .language__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions { display: flex; align-items: center; justify-self: end; gap: 17px; }

.icon-button, .language__trigger, .menu-toggle {
  height: 32px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.icon-button:hover, .language__trigger:hover, .menu-toggle:hover { color: var(--cmid-green); background: #f0f6f2; }

.search-button { width: 28px; display: grid; place-items: center; }

.search-button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.language { position: relative; }

.language__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px;
  font-size: 10px;
  font-weight: 700;
}

.language__menu { right: 0; width: 138px; padding: 7px; }

.language__menu button {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
}

.language__menu button:hover { color: var(--cmid-green); background: #f0f6f2; }

.quote-button {
  width: 107px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--cmid-green);
  border-radius: 5px;
  color: var(--white);
  background: var(--cmid-green);
  box-shadow: 0 3px 8px rgba(22, 124, 74, 0.1);
  font-size: 9.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-button:hover { transform: translateY(-1px); background: var(--cmid-green-dark); box-shadow: 0 5px 12px rgba(22, 124, 74, 0.16); }

button:focus-visible, a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.menu-toggle, .mobile-navigation { display: none; }

main { min-height: calc(100vh - var(--nav-height)); }

.hero {
  position: relative;
  height: 368px;
  overflow: hidden;
  background-color: var(--white);
}

.hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1921px) {
  .hero__image {
    right: auto;
    left: 50%;
    width: 1920px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 28%, rgba(255, 255, 255, 0.36) 45%, rgba(255, 255, 255, 0) 61%),
    linear-gradient(90deg, rgba(22, 124, 74, 0) 52%, rgba(22, 124, 74, 0.075) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 76px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__brand-mark {
  position: absolute;
  z-index: 2;
  width: 78px;
  height: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.hero__brand-mark--warehouse { top: 32px; left: 73%; }
.hero__brand-mark--truck { top: 157px; left: 55%; width: 70px; }

.hero__container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 98px), 1280px);
  height: 100%;
  margin-inline: auto;
}

.hero__content {
  width: 334px;
  padding-top: 31px;
}

.hero__eyebrow {
  margin: 0 0 8px;
  color: var(--cmid-green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #10191f;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.hero h1 .hero__highlight { color: var(--cmid-green); }

.hero__description {
  width: 303px;
  margin: 12px 0 0;
  color: #35413b;
  font-size: 11px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}

.hero-button {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.hero-button--primary {
  width: 180px;
  gap: 8px;
  color: var(--white);
  background: var(--cmid-green);
  box-shadow: 0 5px 13px rgba(22, 124, 74, 0.2);
}

.hero-button--primary:hover { background: var(--cmid-green-dark); }

.hero-button--primary svg { width: 15px; fill: currentColor; }

.hero-button--secondary {
  width: 126px;
  gap: 19px;
  border: 1px solid #b8cec2;
  color: #17221c;
  background: rgba(255, 255, 255, 0.9);
}

.hero-button--secondary:hover { border-color: var(--cmid-green); color: var(--cmid-green); }

.hero-button--secondary svg {
  width: 13px;
  fill: none;
  stroke: var(--cmid-green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__trust {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 57px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 22px 4px 0;
  margin-right: 22px;
  border-right: 1px solid rgba(50, 90, 68, 0.16);
}

.trust-item:last-child { margin-right: 0; border-right: 0; }

.trust-item__icon {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--cmid-green);
}

.trust-item__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h2 {
  margin: 0 0 3px;
  color: #17211c;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

.trust-item p {
  margin: 0;
  color: #526059;
  font-size: 8px;
  line-height: 1.55;
}

.statistics {
  min-height: 105px;
  background: var(--white);
}

.statistics__container {
  width: min(calc(100% - 98px), 1280px);
  height: 105px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(105deg, #004a35 0%, #005c3e 58%, #006747 100%);
  box-shadow: 0 7px 18px rgba(0, 70, 48, 0.12);
}

.stat-item {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  transition: background-color 200ms ease;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:hover { background: rgba(255, 255, 255, 0.04); }

.stat-item__icon {
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: #a9d84c;
  transition: transform 220ms ease;
}

.stat-item:hover .stat-item__icon { transform: scale(1.025); }

.stat-item__icon svg {
  width: 47px;
  height: 47px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.stat-item h3 {
  margin: 2px 0 4px;
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.3;
}

.stat-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.product-categories {
  padding: 22px 0 28px;
  background: var(--white);
}

.product-categories__container {
  width: min(calc(100% - 98px), 1280px);
  margin-inline: auto;
}

.product-categories__header {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 13px;
}

.section-label {
  margin: 0 0 5px;
  color: var(--cmid-green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.product-categories h2 {
  margin: 0;
  color: #111b20;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.028em;
}

.product-categories__intro {
  margin: 4px 0 0;
  color: #66716c;
  font-size: 8.5px;
  line-height: 1.5;
}

.product-categories__all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  color: var(--cmid-green);
  font-size: 8.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: gap 180ms ease, color 180ms ease;
}

.product-categories__all:hover { gap: 16px; color: var(--cmid-green-dark); }

.product-categories__all svg,
.category-card__explore svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 11px rgba(24, 58, 40, 0.075);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.category-card:hover,
.category-card:focus-within {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(22, 124, 74, 0.3);
  box-shadow: 0 13px 26px rgba(24, 58, 40, 0.14);
}

.category-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf2ef;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img { transform: scale(1.055); }

.category-card__body { padding: 10px 9px 9px; }

.category-card h3 {
  min-height: 13px;
  margin: 0;
  overflow: hidden;
  color: #18221d;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card__body > p {
  height: 22px;
  margin: 3px 0 7px;
  overflow: hidden;
  color: #718078;
  font-size: 7.5px;
  line-height: 1.45;
}

.category-card__footer {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.category-card__footer > span {
  color: #4c5a53;
  font-size: 7.5px;
  font-weight: 600;
}

.category-card__explore {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #9ebbad;
  border-radius: 50%;
  color: var(--cmid-green);
  background: var(--white);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.category-card:hover .category-card__explore,
.category-card:focus-within .category-card__explore {
  color: var(--white);
  border-color: var(--cmid-green);
  background: var(--cmid-green);
  transform: translateX(1px);
}

.why-cmid {
  padding: 88px 0 100px;
  background: #fff;
}

.why-cmid__container {
  position: relative;
  width: min(calc(100% - 64px), 1280px);
  min-height: 650px;
  margin-inline: auto;
  overflow: hidden;
  padding: 54px 54px 52px;
  border: 1px solid rgba(25, 70, 47, 0.08);
  border-radius: 34px;
  background: #f7faf8;
  box-shadow: 0 24px 70px rgba(24, 57, 40, 0.12);
  isolation: isolate;
}

.why-cmid__container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.6) 36%, rgba(247,250,248,.94) 100%),
    linear-gradient(90deg, rgba(247,250,248,.1) 0%, rgba(255,255,255,.72) 34%, rgba(255,255,255,.72) 66%, rgba(247,250,248,.1) 100%);
}

.why-cmid__backdrop {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  width: 100%;
  height: 365px;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.58;
}

.why-cmid__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.why-cmid__header .section-label {
  margin-bottom: 13px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.why-cmid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 3.7vw, 50px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.why-cmid__intro {
  max-width: 670px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.why-cmid__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.why-feature-card {
  position: relative;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 25px 24px 23px;
  border: 1px solid rgba(29, 63, 45, 0.09);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 13px 34px rgba(23, 54, 38, 0.1);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  isolation: isolate;
}

.why-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 42%, rgba(255,255,255,.58) 68%, rgba(255,255,255,.12) 100%);
}

.why-feature-card:hover,
.why-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(22, 124, 74, 0.14);
  box-shadow: 0 22px 46px rgba(23, 54, 38, 0.15);
}

.why-feature-card__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transition: transform 320ms ease;
}

.why-feature-card:hover .why-feature-card__image,
.why-feature-card:focus-within .why-feature-card__image {
  transform: scale(1.035);
}

.why-feature-card__icon {
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(22,124,74,.08);
  border-radius: 13px;
  color: var(--cmid-green);
  background: rgba(234,247,240,.94);
  box-shadow: 0 8px 20px rgba(22,76,48,.09);
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.why-feature-card:hover .why-feature-card__icon,
.why-feature-card:focus-within .why-feature-card__icon {
  transform: scale(1.04);
}

.why-feature-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feature-card__content {
  width: min(72%, 235px);
  margin-top: auto;
}

.why-feature-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.why-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.55;
}

.industries {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.industries::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 470px;
  background: url("assets/industries/industries-background.png") center top / cover no-repeat;
  opacity: 0.92;
}

.industries::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.2) 250px, #fff 650px);
}

.industries__container {
  width: min(calc(100% - 64px), 1400px);
  margin-inline: auto;
}

.industries__header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.industries__header .section-label {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.industries h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.industries__header > p:last-child {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

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

.industry-card {
  position: relative;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(29, 63, 45, 0.1);
  border-radius: 21px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 59, 44, 0.07);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.industry-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #edf3ef;
  isolation: isolate;
}

.industry-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(4, 54, 33, 0.015), rgba(4, 54, 33, 0.09));
  pointer-events: none;
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 250ms ease;
}

.industry-card:hover,
.industry-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(22, 124, 74, 0.18);
  box-shadow: 0 18px 38px rgba(23, 54, 38, 0.12);
}

.industry-card:hover .industry-card__media img,
.industry-card:focus-within .industry-card__media img {
  transform: scale(1.03);
}

.industry-card__icon {
  position: absolute;
  top: 16px;
  left: 14px;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--cmid-green);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 22px rgba(22,67,43,.12);
  transition: background 250ms ease, transform 250ms ease;
}

.industry-card:hover .industry-card__icon,
.industry-card:focus-within .industry-card__icon {
  background: #e1f1e8;
  transform: scale(1.045);
}

.industry-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.industry-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
}

.industry-card__body > p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.industry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--cmid-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.industry-card__link svg,
.industries__cta > a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.industry-card:hover .industry-card__link svg,
.industry-card:focus-within .industry-card__link svg {
  transform: translateX(4px);
}

.industry-card__link:focus-visible,
.industries__cta > a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.industries__cta {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  padding: 18px 32px;
  border: 1px solid rgba(22,124,74,.08);
  border-radius: 21px;
  background: rgba(241,248,244,.9);
  box-shadow: 0 10px 26px rgba(28, 59, 44, 0.04);
}

.industries__cta-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--cmid-green);
}

.industries__cta-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.industries__cta-copy strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 16px; }
.industries__cta-copy p {
  margin: 0;
  color: #4e5e56;
  font-size: 12px;
  line-height: 1.6;
}

.industries__cta > a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid var(--cmid-green);
  border-radius: 11px;
  color: var(--white);
  background: var(--cmid-green);
  box-shadow: 0 10px 24px rgba(22, 124, 74, 0.18);
  font-size: 12px;
  font-weight: 750;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.industries__cta > a:hover {
  border-color: var(--cmid-green-dark);
  background: var(--cmid-green-dark);
  box-shadow: 0 14px 30px rgba(22, 124, 74, 0.24);
  transform: translateY(-2px);
}

.industries__cta > a:hover svg {
  transform: translateX(3px);
}

.logistics {
  padding: 96px 0 112px;
  background: var(--white);
}

.logistics__container {
  width: min(calc(100% - 64px), 1440px);
  margin-inline: auto;
}

.logistics__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  min-height: 790px;
  overflow: hidden;
  border: 1px solid rgba(119, 224, 132, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 25%, rgba(59, 205, 81, 0.13), transparent 35%),
    linear-gradient(120deg, #001d14 0%, #003525 45%, #034a2f 100%);
  box-shadow: 0 32px 80px rgba(0, 45, 28, 0.25);
  isolation: isolate;
}

.logistics__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 43% 72%, rgba(25, 202, 88, 0.1), transparent 32%);
}

.logistics__content {
  position: relative;
  z-index: 2;
  padding: 58px 18px 58px 60px;
}

.logistics__header .section-label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 0 13px;
  border: 1px solid rgba(141, 255, 58, 0.48);
  border-radius: 10px;
  color: #b7ff3c;
  background: rgba(4, 62, 35, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.logistics__header .section-label svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logistics h2 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 3.8vw, 54px);
  font-weight: 790;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.logistics__header > p:last-child {
  max-width: 510px;
  margin: 25px 0 0;
  color: rgba(224, 244, 232, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

.logistics__proofs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.logistics-proof {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 18px;
  border: 1px solid rgba(91, 234, 116, 0.34);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(6, 73, 44, 0.72), rgba(0, 42, 29, 0.52));
  box-shadow: inset 0 1px 0 rgba(196, 255, 155, 0.06), inset 0 0 28px rgba(16, 190, 81, 0.045);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.logistics-proof:hover {
  border-color: rgba(167, 255, 91, 0.58);
  background: linear-gradient(145deg, rgba(8, 88, 50, 0.78), rgba(0, 50, 33, 0.62));
  box-shadow: inset 0 1px 0 rgba(214, 255, 180, 0.1), 0 14px 30px rgba(0, 24, 15, 0.18);
  transform: translateY(-2px);
}

.logistics-proof__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 255, 69, 0.28);
  border-radius: 14px;
  color: #c4ff3f;
  background: radial-gradient(circle at 50% 42%, rgba(173, 255, 57, 0.24), rgba(24, 125, 54, 0.28));
  box-shadow: 0 0 18px rgba(126, 255, 54, 0.2);
}

.logistics-proof__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logistics-proof h3 {
  margin: 2px 0 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.logistics-proof p {
  margin: 0;
  color: rgba(219, 240, 225, 0.7);
  font-size: 10px;
  line-height: 1.65;
}

.logistics__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
}

.logistics__primary,
.logistics__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 750;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.logistics__primary {
  min-height: 56px;
  padding: 0 27px;
  border-radius: 12px;
  color: #075235;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 25, 16, 0.18);
  font-size: 12px;
}

.logistics__primary:hover {
  background: #f3f9f5;
  box-shadow: 0 16px 34px rgba(0, 25, 16, 0.24);
  transform: translateY(-2px);
}

.logistics__secondary {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

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

.logistics__primary svg,
.logistics__secondary svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.logistics__primary:hover svg,
.logistics__secondary:hover svg {
  transform: translateX(4px);
}

.logistics__primary:focus-visible,
.logistics__secondary:focus-visible {
  outline: 3px solid rgba(201, 243, 158, 0.48);
  outline-offset: 4px;
}

.logistics__visual {
  position: relative;
  min-width: 0;
  min-height: 790px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.logistics__photo,
.logistics__photo-overlay,
.logistics__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.logistics__photo {
  z-index: 0;
  object-fit: cover;
  object-position: 60% center;
  opacity: 0.74;
  filter: saturate(0.86) contrast(1.22) brightness(0.76);
}

.logistics__photo-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 88% 7%, rgba(197, 255, 163, 0.2) 0%, rgba(82, 230, 112, 0.09) 19%, transparent 43%),
    linear-gradient(180deg, rgba(0, 28, 18, 0.1) 0%, rgba(0, 25, 16, 0.03) 56%, rgba(0, 24, 15, 0.36) 100%),
    linear-gradient(90deg, rgba(0, 35, 24, 0.91) 0%, rgba(0, 42, 28, 0.62) 25%, rgba(0, 42, 27, 0.22) 62%, rgba(0, 28, 18, 0.07) 100%);
}

.logistics__grid {
  z-index: 2;
  background-image: linear-gradient(rgba(99, 255, 114, 0.044) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 255, 114, 0.044) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.logistics-map {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 118%;
  max-width: none;
  height: auto;
  margin-left: 0;
  overflow: visible;
  filter: drop-shadow(0 22px 28px rgba(0, 34, 20, 0.2));
}

.logistics-map__coordinates {
  stroke: rgba(151, 255, 113, 0.096);
  stroke-width: 1;
}

.logistics-map__land {
  fill: url(#logistics-island-fill);
  stroke: #c5ff38;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: 0.98;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 1.5px rgba(218, 255, 78, 0.95)) drop-shadow(0 0 7px rgba(78, 255, 95, 0.62)) drop-shadow(0 0 15px rgba(49, 225, 91, 0.28));
}

.logistics-map__route-glow {
  stroke-width: 8;
  opacity: 0.46;
  filter: url(#logistics-route-glow) drop-shadow(0 0 4px rgba(190, 255, 68, 0.58));
}

.logistics-map__routes {
  stroke-width: 1.9;
  stroke-dasharray: 3 8;
  opacity: 1;
  filter: drop-shadow(0 0 2px rgba(221, 255, 105, 0.82));
  animation: logistics-route-flow 7s linear infinite;
}

.logistics-map__marker-glow {
  fill: rgba(180, 255, 59, 0.36);
  filter: url(#logistics-marker-glow) drop-shadow(0 0 5px rgba(197, 255, 69, 0.66));
}

.logistics-map__marker-outer,
.logistics-map__hub-outer {
  fill: rgba(15, 103, 48, 0.32);
  stroke: #afff32;
  stroke-width: 1;
  opacity: 0.82;
}

.logistics-map__marker-ring {
  fill: rgba(11, 104, 53, 0.78);
  stroke: #ddff6b;
  stroke-width: 1.6;
}

.logistics-map__marker-core {
  fill: #f8ffe8;
  stroke: #c7ff3d;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 3px rgba(226, 255, 118, 0.9));
}

.logistics-map__hub-ring {
  fill: rgba(22, 132, 59, 0.78);
  stroke: #e5ff73;
  stroke-width: 2;
}

.logistics-map__hub-core {
  fill: #fff;
  stroke: #c8ff42;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(226, 255, 112, 0.95));
}

.logistics-map__markers text {
  fill: #fff;
  stroke: rgba(0, 34, 22, 0.92);
  stroke-width: 2.6px;
  paint-order: stroke fill;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logistics-map__marker,
.logistics-map__hub {
  animation: logistics-marker-fade 3.8s ease-in-out infinite;
}

.logistics-map__marker--2 { animation-delay: 400ms; }
.logistics-map__marker--3 { animation-delay: 800ms; }
.logistics-map__marker--4 { animation-delay: 1200ms; }
.logistics-map__marker--5 { animation-delay: 1500ms; }
.logistics-map__marker--6 { animation-delay: 1800ms; }
.logistics-map__hub { animation-delay: 600ms; }

@keyframes logistics-route-flow {
  to { stroke-dashoffset: -88; }
}

@keyframes logistics-marker-fade {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}

.contact-cta {
  padding: 12px 0 24px;
  background: var(--white);
}

.contact-cta__panel,
.bottom-statistics__panel,
.site-footer__main,
.footer-contact-list,
.site-footer__legal {
  width: min(calc(100% - 64px), 1440px);
  margin-inline: auto;
}

.contact-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(0, 1.55fr);
  gap: 54px;
  overflow: hidden;
  padding: 42px 48px;
  border: 1px solid rgba(27, 79, 51, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 100%, rgba(22,124,74,.055), transparent 27%),
    radial-gradient(circle at 92% 20%, rgba(22,124,74,.04), transparent 24%),
    #fbfdfc;
  box-shadow: 0 12px 34px rgba(24, 58, 40, 0.045);
}

.contact-cta__panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 420px;
  height: 210px;
  border-radius: 50%;
  background: rgba(22,124,74,.025);
  transform: rotate(-12deg);
  pointer-events: none;
}

.contact-cta__content,
.contact-cta__services { position: relative; z-index: 1; }
.contact-cta__content { align-self: center; }

.contact-cta__eyebrow {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 19px;
  padding: 0 12px;
  border-radius: 11px;
  color: var(--cmid-green);
  background: #eef7f2;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.contact-cta__eyebrow-icon,
.footer-line-icon {
  display: inline-grid;
  place-items: center;
  color: var(--cmid-green);
}

.contact-cta__eyebrow-icon svg { width: 18px; height: 18px; }
.contact-cta__eyebrow-icon svg,
.contact-cta__button--secondary svg,
.footer-line-icon svg,
.footer-location__map svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cta h2 {
  margin: 0;
  color: #101d33;
  font-size: clamp(35px, 3.25vw, 48px);
  font-weight: 790;
  line-height: 1.08;
  letter-spacing: -.042em;
}

.contact-cta h2 span { color: var(--cmid-green-dark); }

.contact-cta__intro {
  max-width: 500px;
  margin: 18px 0 0;
  color: #5f6a66;
  font-size: 13px;
  line-height: 1.75;
}

.contact-cta__actions {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.contact-cta__button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 29px;
  border: 1px solid var(--cmid-green);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.contact-cta__button svg { width: 22px; height: 22px; }
.contact-cta__button--primary { color: #fff; background: var(--cmid-green); box-shadow: 0 12px 24px rgba(22,124,74,.18); }
.contact-cta__button--primary svg { fill: currentColor; }
.contact-cta__button--secondary { color: var(--cmid-green); background: rgba(255,255,255,.7); }
.contact-cta__button:hover { transform: translateY(-2px); }
.contact-cta__button--primary:hover { background: var(--cmid-green-dark); box-shadow: 0 15px 30px rgba(22,124,74,.24); }
.contact-cta__button--secondary:hover { color: #fff; background: var(--cmid-green); }
.contact-cta__button:focus-visible,
.footer-links a:focus-visible,
.footer-social a:focus-visible,
.footer-location a:focus-visible,
.site-footer__legal a:focus-visible,
.floating-whatsapp a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

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

.support-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px 22px;
  border: 1px solid rgba(29,63,45,.1);
  border-radius: 17px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(23,54,38,.055);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22,124,74,.17);
  box-shadow: 0 18px 38px rgba(23,54,38,.1);
}

.support-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #137c3d;
  background: #eef7f2;
}

.support-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card h3 { margin: 0; color: #145b33; font-size: 13px; line-height: 1.35; }
.support-card p { margin: 13px 0 0; color: #5e6964; font-size: 11px; line-height: 1.75; }
.support-card__accent { width: 32px; height: 2px; margin-top: auto; background: var(--cmid-green); }

.bottom-statistics { padding: 0 0 34px; background: var(--white); }
.bottom-statistics__panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 118px;
  border: 1px solid rgba(27,79,51,.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(24,58,40,.04);
}

.bottom-stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  padding: 24px;
}

.bottom-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #dfe7e2;
}

.bottom-stat__icon { flex: 0 0 52px; color: #11904d; }
.bottom-stat__icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bottom-stat strong { display: block; color: #101d33; font-size: 27px; line-height: 1; letter-spacing: -.03em; }
.bottom-stat p { margin: 8px 0 0; color: #606b67; font-size: 12px; line-height: 1.35; }

.site-footer {
  position: relative;
  padding: 4px 0 8px;
  color: #1a2639;
  background: #fff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(430px, 2.25fr) minmax(110px, .62fr) minmax(130px, .72fr) minmax(150px, .82fr);
  gap: 38px;
  padding: 4px 12px 12px;
}

.site-footer h2 { margin: 0 0 12px; color: #101a2d; font-size: 14px; line-height: 1.35; }
.footer-company,
.footer-location,
.footer-links,
.footer-social { min-width: 0; }

.footer-company {
  padding-right: 22px;
  border-right: 1px solid #e2e8e4;
}

.footer-company__logo { display: inline-block; margin-bottom: 6px; }
.footer-company__logo img { display: block; width: 170px; height: auto; }
.footer-company h2 { margin-bottom: 8px; }
.footer-company > p { margin: 0; color: #5e6965; font-size: 11px; line-height: 1.9; }

.footer-location { padding-right: 8px; }
.footer-location__top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 0;
}

.footer-location address {
  display: flex;
  gap: 12px;
  margin: 0;
  color: #253044;
  font-size: 11px;
  font-style: normal;
  line-height: 1.9;
}

.footer-line-icon { flex: 0 0 22px; width: 22px; height: 22px; }
.footer-line-icon svg { width: 20px; height: 20px; }
.footer-location__map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 34px;
  color: var(--cmid-green);
  font-size: 10px;
  font-weight: 700;
}
.footer-location__map svg { width: 15px; height: 15px; }

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 54px;
  margin: 0 auto 8px;
  padding: 7px 20px;
  border-top: 1px solid #e4eae6;
  border-bottom: 1px solid #e4eae6;
  list-style: none;
}

.footer-contact-list li {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: #263145;
  font-size: 9px;
  line-height: 1.65;
}
.footer-contact-list li:not(:last-child) { border-right: 1px solid #e4eae6; }
.footer-contact-list li:first-child span:last-child,
.footer-contact-list li:nth-child(2) span:last-child { white-space: nowrap; }
.footer-contact-list strong {
  display: block;
  margin-bottom: 1px;
  color: var(--cmid-green-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.footer-contact-list .footer-line-icon { flex-basis: 18px; width: 18px; height: 18px; }
.footer-contact-list .footer-line-icon svg { width: 17px; height: 17px; }

.footer-links,
.footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #2a3547;
  font-size: 10.5px;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-links a { width: 100%; justify-content: space-between; gap: 12px; }
.footer-links a:hover,
.footer-social a:hover { color: var(--cmid-green); transform: translateX(2px); }

.footer-social a { gap: 9px; }
.footer-social__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.footer-social__icon--whatsapp { border-radius: 50%; background: #17ad59; }
.footer-social__icon--facebook { border-radius: 50%; background: #2587db; font-family: Arial, sans-serif; font-size: 16px; }
.footer-social__icon--instagram { background: linear-gradient(145deg, #7a35dc, #ee2968 55%, #f7a22c); font-size: 17px; }
.footer-social__icon--linkedin { background: #1478b5; font-size: 9px; }

.site-footer__legal {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 24px;
  border: 1px solid rgba(27,79,51,.09);
  border-radius: 14px;
  color: #66706c;
  background: #f8fbf9;
  font-size: 9.5px;
}
.site-footer__legal p { margin: 0; }
.site-footer__legal nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.site-footer__legal a { padding: 0 20px; transition: color 180ms ease; }
.site-footer__legal a:hover { color: var(--cmid-green); }
.site-footer__legal a:not(:last-child) { border-right: 1px solid #aeb8b3; }

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.floating-whatsapp__tooltip {
  position: relative;
  max-width: 220px;
  padding: 13px 16px;
  border: 1px solid rgba(26,70,48,.08);
  border-radius: 12px;
  color: #213044;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20,55,36,.12);
  font-size: 10px;
  line-height: 1.5;
}
.floating-whatsapp__tooltip::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
}
.floating-whatsapp__tooltip strong { position: relative; z-index: 1; display: block; color: var(--cmid-green); }
.floating-whatsapp__tooltip span { position: relative; z-index: 1; display: block; margin-top: 3px; }
.floating-whatsapp > a {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 50%;
  color: #fff;
  background: #17b956;
  box-shadow: 0 14px 34px rgba(10,142,67,.32);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.floating-whatsapp > a:hover { background: #0d9f49; box-shadow: 0 17px 38px rgba(10,142,67,.4); transform: translateY(-3px); }
.floating-whatsapp > a::before {
  content: "";
  width: 32px;
  height: 32px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.8 11.8 0 0 0 12.1 0C5.6 0 .3 5.3.3 11.8c0 2.1.5 4.1 1.6 5.9L0 24l6.5-1.7c1.7.9 3.7 1.4 5.6 1.4 6.5 0 11.8-5.3 11.8-11.8 0-3.2-1.2-6.2-3.4-8.4Zm-8.4 18.1c-1.8 0-3.5-.5-5-1.4l-.4-.2-3.9 1 1-3.8-.2-.4a9.7 9.7 0 1 1 8.5 4.8Zm5.3-7.3c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.7-.8-2.8-1.5-3.9-3.4-.3-.5.3-.5.8-1.6.1-.2 0-.4 0-.6l-.9-2.1c-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.2 1.2-1.2 2.9s1.2 3.3 1.4 3.6c.2.2 2.4 3.7 5.9 5.2 2.2.9 3.1 1 4.2.8.7-.1 2-.8 2.3-1.6.3-.8.3-1.5.2-1.6-.1-.2-.3-.3-.6-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.8 11.8 0 0 0 12.1 0C5.6 0 .3 5.3.3 11.8c0 2.1.5 4.1 1.6 5.9L0 24l6.5-1.7c1.7.9 3.7 1.4 5.6 1.4 6.5 0 11.8-5.3 11.8-11.8 0-3.2-1.2-6.2-3.4-8.4Zm-8.4 18.1c-1.8 0-3.5-.5-5-1.4l-.4-.2-3.9 1 1-3.8-.2-.4a9.7 9.7 0 1 1 8.5 4.8Zm5.3-7.3c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.7-.8-2.8-1.5-3.9-3.4-.3-.5.3-.5.8-1.6.1-.2 0-.4 0-.6l-.9-2.1c-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.2 1.2-1.2 2.9s1.2 3.3 1.4 3.6c.2.2 2.4 3.7 5.9 5.2 2.2.9 3.1 1 4.2.8.7-.1 2-.8 2.3-1.6.3-.8.3-1.5.2-1.6-.1-.2-.3-.3-.6-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.floating-whatsapp > a svg { display: none; }

@media (max-width: 1080px) {
  :root { --nav-height: 58px; }
  .nav-container { grid-template-columns: 195px 1fr auto; gap: 32px; }
  .desktop-navigation { gap: 29px; }
  .stat-item { gap: 17px; padding: 10px 18px; }
  .why-cmid__container { width: min(calc(100% - 64px), 980px); min-height: 0; padding: 46px 38px 40px; border-radius: 30px; }
  .why-cmid__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-feature-card { min-height: 205px; padding: 24px 22px; }
  .industries__container { width: min(calc(100% - 64px), 980px); }
  .industries__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-card { min-height: 294px; padding: 0; }
  .logistics__container { width: min(calc(100% - 64px), 980px); }
  .logistics__panel { min-height: 730px; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); }
  .logistics__content { padding: 48px 10px 48px 46px; }
  .logistics h2 { font-size: 42px; }
  .logistics__proofs { gap: 12px; }
  .logistics-proof { min-height: 138px; padding: 17px 15px; }
  .logistics-proof__icon { flex-basis: 42px; width: 42px; height: 42px; }
  .logistics__visual { min-height: 730px; }
  .logistics-map { width: 118%; }
  .logistics__photo { opacity: 0.58; }
  .contact-cta__panel,
  .bottom-statistics__panel,
  .site-footer__main,
  .footer-contact-list,
  .site-footer__legal { width: min(calc(100% - 64px), 980px); }
  .contact-cta__panel { grid-template-columns: 1fr; gap: 34px; }
  .contact-cta__content { text-align: center; }
  .contact-cta__intro { margin-inline: auto; }
  .contact-cta__actions { justify-content: center; }
  .contact-cta__services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-card { min-height: 245px; }
  .bottom-statistics__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bottom-stat:nth-child(2)::after { display: none; }
  .bottom-stat:nth-child(-n + 2)::before { content: ""; position: absolute; right: 28px; bottom: 0; left: 28px; height: 1px; background: #dfe7e2; }
  .site-footer__main { grid-template-columns: 1fr 2fr 1fr; }
  .footer-company { padding-right: 22px; }
  .footer-location { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --nav-height: 58px; }
  body.menu-is-open { overflow: hidden; }
  .nav-container { width: min(calc(100% - 32px), var(--nav-width)); display: flex; }
  .desktop-navigation, .nav-actions > .search-button, .nav-actions > .language, .nav-actions > .quote-button { display: none; }
  .menu-toggle {
    width: 42px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .mobile-navigation {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 18px 24px 30px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }
  .mobile-navigation.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .mobile-navigation > a, .mobile-product-trigger {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: #334039;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }
  .mobile-navigation > a:hover, .mobile-navigation > a.is-active, .mobile-product-trigger:hover { color: var(--cmid-green); }
  .mobile-product-trigger span { font-size: 22px; font-weight: 400; transition: transform 180ms ease; }
  .mobile-product-trigger[aria-expanded="true"] span { transform: rotate(45deg); }
  .mobile-product-placeholder {
    display: none;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
  }
  .mobile-product-placeholder.is-open { display: block; }
  .mobile-utility { margin-top: auto; padding-top: 28px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; }
  .mobile-utility > button:first-child { border: 1px solid var(--line); border-radius: 9px; background: var(--white); font-size: 12px; font-weight: 600; }
  .hero {
    height: auto;
    min-height: 620px;
  }
  .hero__image { object-position: 69% center; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.08) 69%, rgba(255, 255, 255, 0.93) 100%),
      linear-gradient(90deg, rgba(22, 124, 74, 0) 45%, rgba(22, 124, 74, 0.065) 100%);
  }
  .hero::after { display: none; }
  .hero__brand-mark { display: none; }
  .hero__container { width: min(calc(100% - 32px), 680px); min-height: 620px; padding-bottom: 22px; }
  .hero__content { width: min(100%, 420px); padding-top: 42px; }
  .hero__eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(36px, 8.5vw, 48px); }
  .hero__description { width: min(100%, 360px); font-size: 12px; }
  .hero__actions { gap: 10px; }
  .hero-button--primary { width: 190px; }
  .hero-button--secondary { width: 130px; }
  .hero__trust { position: absolute; bottom: 18px; grid-template-columns: 1fr 1fr; height: auto; gap: 12px; }
  .trust-item { min-height: 58px; margin: 0; padding: 10px; border: 1px solid rgba(22, 124, 74, 0.12); border-radius: 8px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(8px); }
  .trust-item:last-child { border: 1px solid rgba(22, 124, 74, 0.12); }
  .statistics { padding: 0 16px 24px; }
  .statistics__container { width: min(100%, 680px); height: auto; grid-template-columns: 1fr 1fr; }
  .stat-item { min-height: 105px; padding: 10px 24px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .product-categories { padding: 44px 0 52px; }
  .product-categories__container { width: min(calc(100% - 32px), 680px); }
  .product-categories__header { margin-bottom: 22px; }
  .product-categories h2 { font-size: 27px; }
  .product-categories__intro { font-size: 11px; }
  .product-categories__all { font-size: 10px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .category-card h3 { font-size: 12px; }
  .category-card__body > p { height: 33px; font-size: 10px; }
  .category-card__footer > span { font-size: 9px; }
  .why-cmid { padding: 76px 0 84px; }
  .why-cmid__container { width: min(calc(100% - 40px), 720px); padding: 42px 30px 34px; }
  .why-cmid__header { margin-bottom: 34px; }
  .why-cmid h2 { font-size: 36px; }
  .why-cmid__intro { font-size: 14px; }
  .why-cmid__features { gap: 14px; }
  .why-feature-card { min-height: 205px; padding: 24px 22px; }
  .industries { padding: 76px 0 84px; }
  .industries__container { width: min(calc(100% - 40px), 720px); }
  .industries__header { margin-bottom: 40px; }
  .industries h2 { font-size: 36px; }
  .industries__header > p:last-child { font-size: 14px; }
  .industries__grid { gap: 18px; }
  .industry-card { min-height: 294px; padding: 0; }
  .industries::before { height: 410px; }
  .industries__cta { padding: 20px 30px; }
  .logistics { padding: 76px 0 84px; }
  .logistics__container { width: min(calc(100% - 40px), 720px); }
  .logistics__panel { min-height: 0; grid-template-columns: 1fr; }
  .logistics__content { padding: 50px 46px 42px; }
  .logistics h2 { max-width: 610px; font-size: 38px; }
  .logistics__header > p:last-child { max-width: 610px; font-size: 13px; }
  .logistics__proofs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logistics__visual { min-height: 500px; padding: 0; }
  .logistics-map { width: 118%; margin-left: 0; }
  .logistics__photo { opacity: 0.5; }
  .logistics-map__route-glow { opacity: 0.3; }
  .contact-cta { padding-top: 0; }
  .contact-cta__panel,
  .bottom-statistics__panel,
  .site-footer__main,
  .footer-contact-list,
  .site-footer__legal { width: min(calc(100% - 40px), 720px); }
  .contact-cta__panel { padding: 42px 36px; }
  .contact-cta h2 { font-size: 38px; }
  .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .footer-company { border-right: 0; }
  .footer-location { grid-column: 1 / -1; grid-row: 2; }
  .footer-links,
  .footer-social { padding-top: 8px; }
}

@media (max-width: 600px) {
  .product-categories__header { align-items: flex-start; }
  .product-categories__all { padding-top: 26px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .why-cmid { padding: 64px 0 70px; }
  .why-cmid__container { width: min(calc(100% - 32px), 520px); padding: 38px 18px 22px; border-radius: 24px; }
  .why-cmid__backdrop { height: 300px; opacity: .42; }
  .why-cmid__header { margin-bottom: 30px; text-align: center; }
  .why-cmid__header .section-label { font-size: 10px; }
  .why-cmid h2 { font-size: 32px; }
  .why-cmid__intro { margin-top: 16px; font-size: 14px; }
  .why-cmid__features { grid-template-columns: 1fr; }
  .why-feature-card { min-height: 210px; padding: 24px 22px; }
  .why-feature-card__icon { width: 47px; height: 47px; margin-bottom: 18px; }
  .why-feature-card__content { width: min(76%, 250px); }
  .industries { padding: 64px 0 70px; }
  .industries__container { width: min(calc(100% - 32px), 520px); }
  .industries__header { margin-bottom: 34px; text-align: left; }
  .industries__header .section-label { font-size: 11px; }
  .industries h2 { font-size: 32px; }
  .industries__header > p:last-child { margin-top: 12px; font-size: 17px; line-height: 1.65; }
  .industries__grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 294px; padding: 0; }
  .industries::before { height: 350px; opacity: 0.62; }
  .industries__cta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
    padding: 26px 22px;
    text-align: center;
  }
  .industries__cta-icon { margin-inline: auto; }
  .industries__cta > a { width: 100%; }
  .logistics { padding: 64px 0 70px; }
  .logistics__container { width: min(calc(100% - 32px), 520px); }
  .logistics__panel { border-radius: 21px; }
  .logistics__content { padding: 38px 26px 34px; }
  .logistics h2 { font-size: 32px; }
  .logistics__header > p:last-child { margin-top: 16px; font-size: 12px; }
  .logistics__proofs { grid-template-columns: 1fr; gap: 10px; margin-top: 25px; }
  .logistics-proof { min-height: 0; }
  .logistics__actions { align-items: stretch; flex-direction: column; margin-top: 26px; }
  .logistics__primary { width: 100%; }
  .logistics__secondary { text-align: center; }
  .logistics__visual { min-height: 390px; padding: 0; }
  .logistics-map { width: 108%; }
  .logistics__photo { opacity: 0.14; }
  .logistics-map__coordinates { stroke-opacity: 0.6; }
  .logistics-map__route-glow { opacity: 0.24; }
  .logistics-map__markers text { font-size: 8px; }
  .contact-cta__panel,
  .bottom-statistics__panel,
  .site-footer__main,
  .footer-contact-list,
  .site-footer__legal { width: min(calc(100% - 32px), 520px); }
  .contact-cta__panel { gap: 30px; padding: 34px 20px 22px; border-radius: 19px; }
  .contact-cta h2 { font-size: 32px; }
  .contact-cta__intro { font-size: 12px; }
  .contact-cta__actions { flex-direction: column; gap: 11px; }
  .contact-cta__button { width: 100%; }
  .contact-cta__services { grid-template-columns: 1fr; gap: 12px; }
  .support-card { min-height: 230px; }
  .bottom-statistics { padding-bottom: 28px; }
  .bottom-statistics__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bottom-stat { justify-content: flex-start; gap: 13px; min-height: 108px; padding: 20px 16px; }
  .bottom-stat__icon { flex-basis: 38px; }
  .bottom-stat__icon svg { width: 38px; height: 38px; }
  .bottom-stat strong { font-size: 23px; }
  .bottom-stat p { font-size: 10px; }
  .bottom-stat:not(:last-child)::after { top: 18px; bottom: 18px; }
  .bottom-stat:nth-child(-n + 2)::before { right: 16px; left: 16px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 22px; padding-inline: 0; }
  .footer-company { padding-right: 0; }
  .footer-location { grid-column: auto; grid-row: auto; }
  .footer-location__top { gap: 10px; }
  .footer-contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; padding-inline: 12px; }
  .footer-contact-list li { min-height: 52px; padding: 7px 14px; }
  .footer-contact-list li:nth-child(2) { border-right: 0; }
  .footer-contact-list li:nth-child(-n + 2) { border-bottom: 1px solid #e4eae6; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; gap: 8px; padding: 9px 18px; }
  .site-footer__legal nav { justify-content: flex-start; margin-left: -12px; }
  .site-footer__legal a { padding-inline: 12px; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
  .floating-whatsapp__tooltip { display: none; }
  .floating-whatsapp > a { width: 60px; height: 60px; border-width: 4px; }
  .floating-whatsapp > a svg { width: 33px; height: 33px; }
}

@media (max-width: 420px) {
  .mobile-utility { grid-template-columns: 1fr; }
  .mobile-utility > button:first-child { min-height: 43px; }
  .hero { min-height: 680px; }
  .hero__container { min-height: 680px; }
  .hero__content { padding-top: 34px; }
  .hero h1 { font-size: 36px; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-button--primary, .hero-button--secondary { width: 100%; }
  .statistics__container { grid-template-columns: 1fr; }
  .stat-item { min-height: 94px; padding: 6px 28px; }
  .stat-item:not(:last-child)::after { top: auto; right: 22px; bottom: 0; left: 22px; width: auto; height: 1px; }
  .stat-item:nth-child(-n + 2)::before { display: none; }
  .product-categories__header { display: block; }
  .product-categories__all { margin-top: 10px; padding: 0; }
  .industries__cta > a { width: 100%; padding-inline: 18px; }
  .bottom-statistics__panel { grid-template-columns: 1fr; }
  .bottom-stat:not(:last-child)::after { top: auto; right: 18px; bottom: 0; left: 18px; width: auto; height: 1px; }
  .bottom-stat:nth-child(-n + 2)::before { display: none; }
  .bottom-stat { justify-content: center; }
  .footer-contact-list { grid-template-columns: 1fr; }
  .footer-contact-list li { justify-content: flex-start; min-height: 46px; padding: 6px 8px; border-right: 0 !important; }
  .footer-contact-list li:not(:last-child) { border-bottom: 1px solid #e4eae6; }
}

@media (max-width: 340px) {
  .category-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .logistics-map__routes, .logistics-map__marker, .logistics-map__hub { animation: none !important; }
}

/* Global readability refinement: typography only. */
body {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

p { font-weight: 500; }

.desktop-navigation { gap: 34px; }
.nav-link { font-size: 16px; font-weight: 600; }
.nav-dropdown__panel { font-size: 16px; line-height: 1.7; }
.language__trigger { font-size: 15px; }
.language__menu button { font-size: 16px; font-weight: 500; }
.quote-button { font-size: 14px; font-weight: 700; }
.mobile-navigation > a,
.mobile-product-trigger { font-size: 17px; font-weight: 600; }
.mobile-product-placeholder,
.mobile-utility > button:first-child { font-size: 16px; line-height: 1.7; }

.hero__eyebrow,
.section-label,
.contact-cta__eyebrow { font-size: 13px; }
.product-categories h2,
.why-cmid h2,
.logistics h2,
.contact-cta h2 {
  font-size: var(--type-section-heading);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.hero__description { font-size: 15px; font-weight: 500; line-height: 1.6; }
.hero__actions { align-items: stretch; }
.hero-button {
  box-sizing: border-box;
  height: auto;
  min-height: 34px;
  padding-block: 7px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}
.hero-button svg { flex: 0 0 auto; }
.trust-item h2 { font-size: 12.5px; }
.trust-item p { font-size: 11.5px; font-weight: 500; line-height: 1.5; }

.stat-item h3 { font-size: 13.5px; font-weight: 750; line-height: 1.3; }
.stat-item p { font-size: 12px; font-weight: 500; line-height: 1.4; }

.product-categories__intro { font-size: 17px; font-weight: 500; line-height: 1.7; }
.product-categories__all { font-size: 16px; }
.category-card h3 {
  min-height: 43px;
  text-overflow: clip;
  white-space: normal;
}
.category-card__body > p {
  height: auto;
  min-height: 76px;
}
.category-card__footer > span { font-size: 14px; font-weight: 600; }

.why-cmid__intro,
.logistics__header > p:last-child,
.contact-cta__intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.category-card h3,
.why-feature-card h3,
.logistics-proof h3,
.support-card h3 {
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
}
.category-card__body > p,
.why-feature-card p,
.logistics-proof p,
.support-card p {
  font-size: var(--type-card-body);
  font-weight: 500;
  line-height: 1.65;
}
.industry-card__link { font-size: 16px; font-weight: 700; line-height: 1.35; }
.industries__cta-copy strong { font-size: 18px; }
.industries__cta-copy p { font-size: 17px; font-weight: 500; line-height: 1.7; }
.industries__cta > a { font-size: 17px; }

.logistics__header .section-label { font-size: 13px; }
.logistics__primary,
.logistics__secondary { font-size: 17px; }

.contact-cta__button { font-size: 17px; }
.bottom-stat p { font-size: 16px; font-weight: 500; line-height: 1.55; }

.site-footer h2 { font-size: 18px; }
.footer-company > p { font-size: 16px; font-weight: 500; line-height: 1.55; }
.footer-location address { font-size: 15.5px; font-weight: 500; line-height: 1.55; }
.footer-location__map { font-size: 15px; }
.footer-contact-list li { font-size: 14.5px; font-weight: 500; line-height: 1.4; }
.footer-links,
.footer-social { gap: 0; }
.footer-links a,
.footer-social a { min-height: 30px; font-size: 15.5px; font-weight: 500; line-height: 1.4; }
.site-footer__legal { font-size: 13.5px; line-height: 1.45; }
.floating-whatsapp__tooltip { font-size: 14.5px; line-height: 1.6; }

@media (max-width: 1080px) {
  .desktop-navigation { gap: 18px; }
  .nav-link { font-size: 14.5px; }
  .language__trigger { font-size: 14px; }
  .quote-button { font-size: 13.5px; }
}

@media (max-width: 860px) {
  body { font-size: 17px; }
  .desktop-navigation { gap: 29px; }
  .product-categories h2,
  .why-cmid h2,
  .industries h2,
  .logistics h2,
  .contact-cta h2 { font-size: 36px; }
  .hero__description { font-size: 15px; }
  .category-card h3 { font-size: 16px; }
  .category-card__body > p { font-size: 15.5px; }
  .why-cmid__intro,
  .industries__header > p:last-child,
  .logistics__header > p:last-child,
  .contact-cta__intro { font-size: 17px; }
}

@media (max-width: 600px) {
  .product-categories h2,
  .why-cmid h2,
  .industries h2,
  .logistics h2,
  .contact-cta h2 { font-size: 32px; }
  .footer-company > p { font-size: 16px; }
  .footer-links a,
  .footer-social a { font-size: 15.5px; }
}

/* Product Categories: premium visual consistency refinement. */
.product-categories {
  padding: 64px 0 76px;
  background: var(--white);
}

.product-categories__container {
  width: min(calc(100% - 64px), 1400px);
}

.product-categories__header {
  min-height: 0;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}

.product-categories__header .section-label {
  margin-bottom: 12px;
  color: var(--cmid-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-categories h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.product-categories__intro {
  max-width: 660px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.product-categories__all {
  gap: 9px;
  padding: 9px 0;
  color: var(--cmid-green);
  font-size: 16px;
  font-weight: 700;
}

.product-categories__all:hover { gap: 12px; }

.product-categories__all svg,
.category-card__explore svg { width: 16px; }

.category-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.category-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-color: rgba(29, 63, 45, 0.1);
  border-radius: 21px;
  box-shadow: 0 10px 28px rgba(28, 59, 44, 0.07);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(22, 124, 74, 0.18);
  box-shadow: 0 18px 38px rgba(23, 54, 38, 0.12);
}

.category-card__media {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  background: #edf3ef;
}

.category-card__media img {
  object-fit: cover;
  transition: transform 320ms ease;
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img { transform: scale(1.03); }

.category-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 17px 16px;
}

.category-card h3 {
  min-height: 43px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
}

.category-card__body > p {
  height: auto;
  min-height: 0;
  flex: 1;
  margin: 0 0 16px;
  overflow: visible;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.category-card__footer {
  min-height: 36px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(29, 63, 45, 0.08);
}

.category-card__footer > span {
  color: #52615a;
  font-size: 15px;
  font-weight: 600;
}

.category-card__explore {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  border-color: rgba(22, 124, 74, 0.35);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.category-card:hover .category-card__explore,
.category-card:focus-within .category-card__explore { transform: translateX(3px); }

@media (max-width: 1320px) {
  .product-categories__container { width: min(calc(100% - 64px), 1200px); }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .product-categories { padding: 56px 0 64px; }
  .product-categories__container { width: min(calc(100% - 40px), 720px); }
  .product-categories__header { margin-bottom: 32px; }
  .product-categories h2 { font-size: 36px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 600px) {
  .product-categories { padding: 48px 0 56px; }
  .product-categories__container { width: min(calc(100% - 32px), 520px); }
  .product-categories__header { display: block; margin-bottom: 28px; }
  .product-categories h2 { font-size: 32px; }
  .product-categories__all { margin-top: 12px; padding: 6px 0; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .category-card__body { padding: 16px 15px 14px; }
  .category-card__body > p { font-size: 16px; }
}

@media (max-width: 420px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card__media { height: 190px; aspect-ratio: auto; }
}

/* Final Industries typography cascade: matches the rendered section classes. */
.industries .industries__header .section-label {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.industries .industries__header h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.industries .industries__header > p:last-child {
  margin: 12px auto 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.industries .industry-card h3 {
  margin: 0 0 8px;
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.industries .industry-card__body > p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.industries .industry-card__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .industries .industries__header h2 { font-size: 36px; }
}

@media (max-width: 600px) {
  .industries .industries__header h2 { font-size: 32px; }
}

/* Industries responsive containment: desktop presentation remains unchanged. */
@media (max-width: 1080px) {
  .industries {
    overflow-x: clip;
  }

  .industries__container,
  .industries__grid,
  .industry-card,
  .industry-card__media,
  .industry-card__body,
  .industries__cta,
  .industries__cta-copy {
    min-width: 0;
    max-width: 100%;
  }

  .industries__grid,
  .industries__cta {
    width: 100%;
  }

  .industry-card__media img,
  .industries__cta > a {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .industries__cta {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px 20px;
  }

  .industries__cta > a {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

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

  .floating-whatsapp__tooltip {
    display: none;
  }

  .floating-whatsapp > a {
    width: 54px;
    height: 54px;
    border-width: 4px;
  }

  .floating-whatsapp > a::before {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 600px) {
  .industries__cta {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

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

  .floating-whatsapp > a {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .floating-whatsapp > a::before {
    width: 27px;
    height: 27px;
  }
}

/* Logistics: compact Website V2 consistency refinement. */
.logistics {
  overflow-x: clip;
  padding: 82px 0 94px;
}

.logistics__container,
.logistics__panel,
.logistics__content,
.logistics__proofs,
.logistics-proof,
.logistics-proof > div,
.logistics__actions,
.logistics__visual,
.logistics-map {
  min-width: 0;
  max-width: 100%;
}

.logistics__panel {
  min-height: 700px;
}

.logistics__content {
  padding: 48px 18px 48px 100px;
}

.logistics__header .section-label {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 13px;
}

.logistics h2 {
  max-width: 520px;
  font-family: inherit;
  font-size: clamp(36px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.logistics__header > p:last-child {
  max-width: 540px;
  margin-top: 18px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.logistics__proofs {
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.logistics-proof {
  min-height: 128px;
  height: 100%;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(196, 255, 155, 0.06), 0 10px 26px rgba(0, 24, 15, 0.1);
}

.logistics-proof__icon {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.logistics-proof__icon svg {
  width: 22px;
  height: 22px;
}

.logistics-proof h3 {
  margin: 1px 0 10px;
  font-family: inherit;
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
}

.logistics-proof p {
  font-family: inherit;
  font-size: var(--type-card-body);
  font-weight: 500;
  line-height: 1.6;
}

.logistics__actions {
  gap: 14px 22px;
  margin-top: 28px;
}

.logistics__primary,
.logistics__secondary {
  min-width: 0;
  max-width: 100%;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.35;
}

.logistics__primary {
  min-height: 52px;
  padding-inline: 24px;
}

.logistics__visual {
  min-height: 700px;
  contain: paint;
}

.logistics__photo {
  max-width: none;
}

.logistics-map {
  width: 118%;
  max-width: none;
}

@media (max-width: 1080px) {
  .logistics {
    padding: 68px 0 76px;
  }

  .logistics__panel {
    min-height: 650px;
  }

  .logistics__content {
    padding: 42px 12px 42px 56px;
  }

  .logistics__visual {
    min-height: 650px;
  }

  .logistics-proof {
    min-height: 126px;
    gap: 16px;
    padding: 20px 18px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    gap: 0;
  }

  .floating-whatsapp__tooltip {
    display: none;
  }

  .floating-whatsapp > a {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }

  .floating-whatsapp > a svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 860px) {
  .logistics {
    padding: 60px 0 68px;
  }

  .logistics__panel {
    min-height: 0;
  }

  .logistics__content {
    padding: 42px 40px 36px;
  }

  .logistics h2 {
    max-width: 610px;
    font-size: 36px;
  }

  .logistics__header > p:last-child {
    max-width: 540px;
    font-size: 17px;
  }

  .logistics__visual {
    min-height: 440px;
  }

  .logistics-map {
    width: 110%;
  }

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

  .floating-whatsapp > a {
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp > a svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 600px) {
  .logistics {
    padding: 52px 0 58px;
  }

  .logistics__content {
    padding: 34px 20px 30px;
  }

  .logistics h2 {
    font-size: 32px;
  }

  .logistics__header > p:last-child {
    margin-top: 15px;
    font-size: 17px;
  }

  .logistics__proofs {
    gap: 10px;
    margin-top: 22px;
  }

  .logistics-proof {
    min-height: 122px;
    gap: 15px;
    padding: 18px;
  }

  .logistics__actions {
    gap: 12px;
    margin-top: 22px;
  }

  .logistics__primary,
  .logistics__secondary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .logistics__visual {
    min-height: 330px;
  }

  .logistics-map {
    width: 100%;
  }

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

  .floating-whatsapp > a {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

.floating-whatsapp > a svg {
    width: 27px;
    height: 27px;
  }
}

/* Homepage desktop hero: keep CTAs clear of the feature row. */
@media (min-width: 861px) {
  .hero {
    height: 420px;
  }

  .hero__content {
    width: min(520px, 42vw);
  }

  .hero__description {
    width: min(440px, 100%);
  }

  .hero__actions {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .hero__actions .hero-button {
    box-sizing: border-box;
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__actions .hero-button svg {
    flex: 0 0 auto;
  }

  .hero__actions .hero-button span {
    display: block;
    line-height: 1.2;
  }

  .hero__actions .hero-button--primary {
    min-width: 224px;
  }

  .hero__actions .hero-button--secondary {
    min-width: 142px;
  }
}

@media (max-width: 600px) {
  .hero__actions .hero-button--primary,
  .hero__actions .hero-button--secondary {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    white-space: normal;
  }
}

/* Contact CTA: premium B2B consultation refinement. */
.contact-cta {
  overflow-x: clip;
}

.contact-cta__panel {
  width: min(calc(100% - 64px), 1472px);
  grid-template-columns: minmax(390px, 0.97fr) minmax(0, 1.48fr);
  gap: 50px;
  padding: 42px 48px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 100%, rgba(22, 124, 74, 0.07), transparent 29%),
    radial-gradient(circle at 92% 20%, rgba(22, 124, 74, 0.055), transparent 26%),
    linear-gradient(115deg, #fcfefd 0%, #f9fcfa 64%, #f5faf7 100%);
  box-shadow: 0 14px 38px rgba(24, 58, 40, 0.06);
}

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

.contact-cta__panel::before {
  right: 18%;
  bottom: -155px;
  width: 720px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(22, 124, 74, 0.055), rgba(22, 124, 74, 0.018) 55%, transparent 72%);
  transform: rotate(-5deg);
}

.contact-cta__panel::after {
  right: -110px;
  bottom: -125px;
  width: 520px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(22, 124, 74, 0.065), rgba(22, 124, 74, 0.02) 58%, transparent 74%);
  transform: rotate(-10deg);
}

.contact-cta__content,
.contact-cta__services,
.support-card,
.support-card > * {
  min-width: 0;
  max-width: 100%;
}

.contact-cta__content {
  align-self: center;
}

.contact-cta__eyebrow {
  margin-bottom: 14px;
}

.contact-cta h2 {
  max-width: 520px;
  font-size: clamp(36px, 3.2vw, 44px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-cta__intro {
  max-width: 500px;
  margin-top: 17px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-cta__actions {
  gap: 18px;
  margin-top: 24px;
}

.contact-cta__button {
  min-height: 56px;
  gap: 11px;
  padding-inline: 26px;
  border-radius: 11px;
  font-size: 17px;
  font-weight: 700;
}

.contact-cta__button--primary {
  min-width: 240px;
  box-shadow: 0 13px 28px rgba(22, 124, 74, 0.22);
}

.contact-cta__button--primary:hover {
  box-shadow: 0 16px 32px rgba(22, 124, 74, 0.27);
}

.contact-cta__button--secondary {
  min-width: 186px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-cta__services {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.support-card {
  min-height: 272px;
  height: 100%;
  padding: 26px 18px 22px;
  border-color: rgba(29, 63, 45, 0.11);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 11px 28px rgba(23, 54, 38, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.support-card:hover,
.support-card:focus-within {
  border-color: rgba(22, 124, 74, 0.2);
  box-shadow: 0 16px 34px rgba(23, 54, 38, 0.095);
  transform: translateY(-2px);
}

.support-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 17px;
  border: 1px solid rgba(22, 124, 74, 0.13);
  color: var(--cmid-green);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #f2faf5, #e8f4ed);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(22, 124, 74, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.support-card:hover .support-card__icon,
.support-card:focus-within .support-card__icon {
  box-shadow: 0 10px 22px rgba(22, 124, 74, 0.13);
  transform: translateY(-2px);
}

.support-card__icon svg {
  width: 38px;
  height: 38px;
}

.support-card h3 {
  margin: 0;
  color: #17212b;
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: 1.35;
}

.support-card p {
  margin: 11px 0 0;
  color: #5e6964;
  font-size: var(--type-card-body);
  font-weight: 500;
  line-height: 1.6;
}

.support-card__accent {
  margin-top: auto;
}

@media (max-width: 1080px) {
  .contact-cta__panel {
    width: min(calc(100% - 64px), 980px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px;
  }

  .contact-cta__content {
    text-align: center;
  }

  .contact-cta h2,
  .contact-cta__intro {
    margin-inline: auto;
  }

  .contact-cta__actions {
    justify-content: center;
  }

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

  .support-card {
    min-height: 220px;
    padding: 22px 20px 18px;
  }

  .support-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
  }

  .support-card__icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 860px) {
  .contact-cta__panel {
    width: min(calc(100% - 40px), 720px);
    padding: 34px 30px;
  }

  .contact-cta h2 {
    font-size: 36px;
  }

  .contact-cta__intro {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .contact-cta__panel {
    width: min(calc(100% - 32px), 520px);
    gap: 24px;
    padding: 30px 18px 22px;
  }

  .contact-cta h2 {
    font-size: 32px;
  }

  .contact-cta__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .contact-cta__button {
    width: 100%;
    min-height: 50px;
    min-width: 0;
    padding-inline: 18px;
  }

  .contact-cta__services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-card {
    min-height: 200px;
    padding: 20px 18px 16px;
  }

  .support-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
  }

  .support-card__icon svg {
    width: 34px;
    height: 34px;
  }
}

/* Shared public-page ending: final CTA, footer, and copyright. */
.shared-final-cta {
  padding: 34px 0;
  background: #f6faf7;
}

.shared-final-cta__panel {
  width: min(calc(100% - 64px), 1440px);
  min-height: 168px;
  margin-inline: auto;
  padding: 32px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(22, 124, 74, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 15%, rgba(99, 185, 127, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #edf7f0);
  box-shadow: 0 18px 42px rgba(15, 71, 45, 0.09);
}

.shared-final-cta__copy {
  max-width: 760px;
}

.shared-final-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--cmid-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.shared-final-cta h2 {
  margin: 0;
  color: #10221a;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.shared-final-cta__copy > p:last-child {
  max-width: 680px;
  margin: 12px 0 0;
  color: #4c5c54;
  font-size: 16px;
  line-height: 1.65;
}

.shared-final-cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shared-final-cta__button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--cmid-green);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.shared-final-cta__button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.shared-final-cta__button--primary {
  color: #fff;
  background: var(--cmid-green);
  box-shadow: 0 10px 22px rgba(22, 124, 74, 0.2);
}

.shared-final-cta__button--secondary {
  color: var(--cmid-green);
  background: rgba(255, 255, 255, 0.88);
}

.shared-final-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(22, 124, 74, 0.18);
}

.shared-footer .footer-company__logo img {
  width: min(100%, 210px);
  height: auto;
  object-fit: contain;
}

.shared-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shared-footer .shared-footer__social-link {
  width: 38px;
  min-height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transform: none;
}

.shared-footer .shared-footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.shared-footer .shared-footer__social-link--whatsapp { background: #17ad59; }
.shared-footer .shared-footer__social-link--facebook { background: #1877f2; }
.shared-footer .shared-footer__social-link--instagram { background: linear-gradient(145deg, #6a35d4, #e52f70 55%, #f5a12b); }
.shared-footer .shared-footer__social-link--instagram svg { fill: none; }
.shared-footer .shared-footer__social-link--instagram .is-filled { fill: currentColor; stroke: none; }

.shared-footer .shared-footer__social-link:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.shared-footer__copyright {
  min-height: 46px;
}

@media (max-width: 1080px) {
  .shared-final-cta__panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .shared-final-cta {
    padding: 24px 0;
  }

  .shared-final-cta__panel {
    width: min(calc(100% - 32px), 620px);
    min-height: 0;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .shared-final-cta h2 {
    font-size: 30px;
  }

  .shared-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .shared-final-cta__button {
    width: 100%;
    min-height: 50px;
    white-space: normal;
  }

  .shared-footer__social-list {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shared-final-cta__button,
  .shared-footer .shared-footer__social-link {
    transition: none;
  }
}
