:root {
  --ink: #121821;
  --ink-strong: #0b1118;
  --steel: #263445;
  --steel-2: #405168;
  --muted: #667386;
  --line: #d4d8dd;
  --line-dark: rgba(255, 255, 255, 0.14);
  --paper: #ffffff;
  --surface: #f3f4f2;
  --surface-2: #e4e7e4;
  --green: #2f7d22;
  --green-strong: #245f1a;
  --brand-blue: #0073e6;
  --brand-amber: #ffbf00;
  --amber: #c8892d;
  --blue: #2f6f9f;
  --shadow: 0 18px 46px rgba(18, 24, 33, 0.2);
  --shadow-soft: 0 10px 28px rgba(18, 24, 33, 0.12);
  --radius: 3px;
  --header-offset: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: clip;
}

.page-transition-frame {
  min-height: 100dvh;
  background: var(--paper);
  transform-origin: center;
  will-change: clip-path, opacity, transform;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: block;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

.page-transition-overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170vmax;
  height: 170vmax;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 62%, #f6f8f5 63%, #ffffff 100%);
  box-shadow:
    0 0 0 1px rgba(47, 125, 34, 0.12),
    0 26px 90px rgba(18, 24, 33, 0.24);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}

.page-transition-entering:not(.page-transition-shown),
.page-transition-covering {
  height: 100%;
  overflow: hidden;
}

.page-transition-entering:not(.page-transition-shown) .page-transition-frame {
  height: 100dvh;
  overflow: hidden;
  opacity: 0.58;
  transform: perspective(1000px) translateZ(-130px);
  clip-path: circle(0vmax at center);
}

.page-transition-entering.page-transition-shown .page-transition-frame {
  opacity: 1;
  transform: perspective(1000px) translateZ(0);
  clip-path: circle(150vmax at center);
  transition:
    transform 520ms cubic-bezier(0.23, 1, 0.32, 1),
    clip-path 500ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 420ms ease;
}

.page-transition-done .page-transition-frame {
  height: auto;
  overflow: visible;
  transform: none;
  clip-path: none;
  transition: none;
}

.page-transition-covering .page-transition-frame {
  height: 100dvh;
  overflow: hidden;
  opacity: 0.96;
  transform: perspective(1000px) translateZ(80px);
  transition:
    transform 380ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 380ms ease;
}

.page-transition-covering .page-transition-overlay {
  visibility: visible;
}

.page-transition-covering-active .page-transition-overlay::before {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 460ms cubic-bezier(0.23, 1, 0.32, 1);
}

.page-transition-from-link:not(.page-transition-shown) .page-transition-overlay {
  visibility: visible;
}

.page-transition-from-link:not(.page-transition-shown) .page-transition-overlay::before {
  transform: translate(-50%, -50%) scale(1);
}

.page-transition-from-link.page-transition-shown .page-transition-overlay {
  visibility: visible;
}

.page-transition-from-link.page-transition-shown .page-transition-overlay::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.04);
  transition:
    opacity 220ms ease 140ms,
    transform 480ms cubic-bezier(0.23, 1, 0.32, 1);
}

@supports not (clip-path: circle(75% at center)) {
  .page-transition-entering:not(.page-transition-shown) .page-transition-frame {
    opacity: 0;
    transform: translateY(10px);
  }

  .page-transition-entering.page-transition-shown .page-transition-frame {
    clip-path: none;
    transition: opacity 420ms ease, transform 420ms ease;
  }
}

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

img {
  background: var(--surface-2);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(74, 154, 54, 0.82);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(18, 24, 33, 0.1);
  backdrop-filter: blur(14px);
}

.contact-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink-strong);
  font-size: 13px;
}

.contact-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.contact-bar__inner span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.contact-bar a {
  transition: color 180ms ease;
}

.contact-bar a:hover {
  color: #8bd276;
}

.main-nav__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-height: 64px;
  min-width: 246px;
  max-width: 286px;
  padding: 6px 0;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  background: transparent;
}

.brand__wordmark {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand__wordmark strong {
  display: block;
  color: var(--ink-strong);
  font-size: 29px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand__wordmark strong span {
  color: var(--brand-blue);
}

.brand__wordmark small {
  display: block;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--steel);
  transition: color 180ms ease;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--green-strong);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  color: var(--paper) !important;
  background: var(--green-strong);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(36, 95, 26, 0.3);
}

.nav-cta:hover {
  background: #1d5015;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--steel);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 28px 0;
}

.section-dark {
  color: var(--paper);
  background: var(--ink-strong);
}

.section-muted {
  background: var(--surface);
}

.section-steel {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 24, 33, 0.98), rgba(38, 52, 69, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(74, 154, 54, 0.14), transparent 28%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.24;
}

p {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-steel .eyebrow {
  color: #8bd276;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(760px, calc(100svh - var(--header-offset)));
  display: flex;
  align-items: center;
}

.hero__media,
.hero__veil,
.page-hero__media,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.hero__media img {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__veil,
.page-hero__veil {
  background:
    linear-gradient(90deg, rgba(11, 17, 24, 0.94), rgba(11, 17, 24, 0.72) 48%, rgba(11, 17, 24, 0.34)),
    linear-gradient(180deg, rgba(11, 17, 24, 0.12), rgba(11, 17, 24, 0.72));
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  padding: 92px 0 72px;
}

.hero__copy {
  max-width: 840px;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: var(--paper);
  background: var(--green-strong);
  box-shadow: 0 16px 34px rgba(36, 95, 26, 0.3);
}

.button--primary:hover {
  background: #1d5015;
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.16);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-top: 66px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__proof div {
  min-height: 128px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  background: rgba(11, 17, 24, 0.58);
}

.hero__proof div:last-child {
  border-right: 0;
}

.hero__proof strong {
  display: block;
  color: #8bd276;
  font-size: 36px;
  line-height: 1;
}

.hero__proof span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: end;
}

.page-hero__content {
  max-width: 840px;
  padding: 108px 0 72px;
}

.page-hero__content p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.logo-strip span,
.product-toolbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-toolbar a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-toolbar a:hover {
  color: var(--paper);
  border-color: var(--green);
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split--wide {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.split__copy p,
.section-heading p,
.contact-copy p,
.family-intro p {
  color: var(--muted);
}

.split__copy p {
  max-width: 690px;
}

.split__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding-left: 34px;
  color: var(--steel);
  font-weight: 700;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.58);
}

.process-panel,
.values-grid,
.proof-list,
.step-grid,
.sector-grid,
.sector-page-grid,
.catalog-cards,
.spec-grid {
  display: grid;
  gap: 18px;
}

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

.process-panel article,
.values-grid article,
.sector-card,
.proof-list article,
.step-card,
.catalog-card,
.spec-card,
.sector-panel,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.process-panel article {
  min-height: 148px;
  padding: 26px;
  border-left: 5px solid var(--green);
}

.process-panel span,
.values-grid span,
.service-row__copy span,
.step-card span,
.sector-panel > span,
.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--green);
  border: 1px solid rgba(74, 154, 54, 0.42);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.process-panel p,
.values-grid p,
.sector-card p,
.proof-list p,
.step-card p,
.catalog-card p,
.spec-card p,
.sector-panel p,
.timeline-item p {
  color: var(--muted);
}

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

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.feature-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 210, 118, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 520ms ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card div {
  padding: 24px;
}

.feature-card span,
.product-detail span,
.spec-card span,
.contact-list span,
.catalog-card h3 + p + ul li::marker {
  color: var(--green);
}

.feature-card span,
.product-detail span,
.spec-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card a,
.text-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #8bd276;
  font-weight: 800;
}

.text-link {
  color: var(--green-strong);
}

.sector-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-card {
  min-height: 210px;
  padding: 28px;
  border-top: 4px solid var(--green);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.quote-band {
  padding: 82px 0;
  background:
    linear-gradient(rgba(11, 17, 24, 0.86), rgba(11, 17, 24, 0.9)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.quote-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 32px;
  align-items: center;
}

.quote-band h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 44px);
}

.quote-band p:last-of-type {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 50px;
  align-items: start;
}

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

.proof-list article,
.step-card {
  min-height: 170px;
  padding: 26px;
}

.proof-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--steel);
  font-weight: 800;
}

.product-family {
  display: grid;
  gap: 42px;
}

.family-intro {
  max-width: 840px;
}

.product-detail-grid {
  display: grid;
  gap: 24px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.product-detail img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-detail > div {
  padding: 34px;
}

dl {
  display: grid;
  gap: 10px;
  margin: 24px 0 10px;
}

dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--steel);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.catalog-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card,
.spec-card {
  padding: 28px;
}

.catalog-card ul,
.spec-card ul,
.service-row__copy ul,
.sector-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.catalog-card li,
.service-row__copy li,
.sector-panel li {
  margin-bottom: 8px;
}

.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-steel .family-intro p,
.section-steel .spec-card p,
.section-steel .spec-card dd {
  color: rgba(255, 255, 255, 0.7);
}

.section-steel .spec-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
}

.section-steel .spec-card dt {
  color: var(--paper);
}

.section-steel .spec-card dl div {
  border-color: var(--line-dark);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.cta-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-search {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 26px;
}

.catalog-search label {
  color: var(--steel);
  font-weight: 800;
}

.catalog-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.catalog-search input {
  padding: 14px 16px;
  background: var(--surface);
}

.catalog-search input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(74, 154, 54, 0.12);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.catalog-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  font-size: 15px;
}

.catalog-table caption {
  padding: 18px;
  color: var(--steel);
  font-weight: 800;
  text-align: left;
}

.catalog-table th,
.catalog-table td {
  padding: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.catalog-table th {
  color: var(--paper);
  background: var(--steel);
  font-size: 13px;
  text-transform: uppercase;
}

.catalog-table td:first-child {
  color: var(--ink-strong);
  font-weight: 800;
}

.catalog-table tr.is-hidden {
  display: none;
}

.catalog-empty {
  display: none;
  margin: 14px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  background: var(--paper);
  font-weight: 700;
}

.catalog-empty.is-visible {
  display: block;
}

.quote-checklist {
  display: grid;
  gap: 10px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-stack {
  display: grid;
  gap: 28px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-row--reverse .service-row__image {
  order: 2;
}

.service-row__image {
  min-height: 420px;
  overflow: hidden;
}

.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 620ms ease;
}

.service-row:hover .service-row__image img {
  transform: scale(1.05);
}

.service-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.service-row__copy h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.sector-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-panel {
  min-height: 310px;
  padding: 30px;
}

.sector-panel h2 {
  font-size: 28px;
}

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

.values-grid article {
  min-height: 210px;
  padding: 26px;
}

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

.timeline-item {
  min-height: 240px;
  padding: 28px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(245, 247, 249, 0.96), rgba(255, 255, 255, 0.96)),
    url("https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.76fr);
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.contact-list a,
.contact-list div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow-wrap: anywhere;
}

.contact-list span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin: 0 0 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-bottom: 16px;
  padding: 13px 14px;
  background: var(--surface);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.fallback-contact {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.fallback-contact a {
  color: var(--green-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink-strong);
}

.site-footer__inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer__inner > p {
  text-align: right;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-weight: 800;
}

.site-footer a:hover {
  color: #8bd276;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--paper);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.44);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal--late {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

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

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

@media (max-width: 1180px) {
  .nav-menu {
    gap: 12px;
    font-size: 11px;
  }

  .brand {
    min-width: 212px;
    max-width: 228px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand__wordmark strong {
    font-size: 24px;
  }

  .brand__wordmark small {
    font-size: 8.5px;
    letter-spacing: 1.1px;
  }

  .feature-grid,
  .sector-grid,
  .step-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 940px) {
  :root {
    --header-offset: 72px;
  }

  .contact-bar {
    display: none;
  }

  .main-nav__inner {
    min-height: 72px;
  }

  .brand {
    min-height: 56px;
    min-width: 212px;
    max-width: 230px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    z-index: 10;
    left: 20px;
    right: 20px;
    top: 72px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-cta {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-menu a::after {
    display: none;
  }

  .split,
  .split--wide,
  .proof-grid,
  .contact-grid,
  .service-row,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .split__media img,
  .product-detail img,
  .service-row__image {
    min-height: 320px;
    height: 320px;
  }

  .service-row--reverse .service-row__image {
    order: 0;
  }

  .quote-band {
    background-attachment: scroll;
  }

  .quote-band__inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .catalog-cards,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__inner > p {
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .section-compact {
    padding: 22px 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand {
    min-width: 196px;
  }

  .brand__wordmark strong {
    font-size: 22px;
  }

  .brand__wordmark small {
    font-size: 8px;
    letter-spacing: 0.9px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    padding: 72px 0 42px;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero__content {
    padding: 84px 0 48px;
  }

  .hero__actions,
  .logo-strip,
  .product-toolbar,
  .site-footer nav {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .logo-strip span,
  .product-toolbar a {
    width: 100%;
  }

  .hero__proof,
  .feature-grid,
  .sector-grid,
  .proof-list,
  .step-grid,
  .sector-page-grid,
  .values-grid,
  .timeline,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero__proof div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero__proof div:last-child {
    border-bottom: 0;
  }

  .process-panel article,
  .feature-card div,
  .sector-card,
  .proof-list article,
  .step-card,
  .catalog-card,
  .spec-card,
  .sector-panel,
  .timeline-item,
  .values-grid article,
  .product-detail > div,
  .service-row__copy,
  .contact-form,
  .cta-panel {
    padding: 24px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* Industrial redesign layer */
.site-header {
  background: var(--paper);
  box-shadow: 0 2px 0 rgba(18, 24, 33, 0.08);
  backdrop-filter: none;
}

.contact-bar {
  background: #080d13;
  border-bottom: 3px solid var(--green);
  font-size: 13px;
  font-weight: 700;
}

.contact-bar__inner {
  min-height: 42px;
}

.main-nav {
  background: var(--paper);
}

.main-nav__inner {
  min-height: 92px;
}

.nav-menu a {
  color: #1c2734;
}

.nav-menu a:not(.nav-cta)::after {
  bottom: 0;
  height: 3px;
}

.nav-cta {
  border-radius: 0;
  box-shadow: none;
}

.button {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: none;
}

.button--dark {
  color: var(--paper);
  background: var(--ink-strong);
}

.button--dark:hover {
  background: var(--steel);
}

.section {
  position: relative;
}

.section-light {
  background: #f7f7f4;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.hero--industrial {
  min-height: min(790px, calc(100svh - var(--header-offset)));
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.76) contrast(1.12);
  animation: industrialHeroFade 18s infinite;
}

.hero__slides img:nth-child(2) {
  animation-delay: 6s;
}

.hero__slides img:nth-child(3) {
  animation-delay: 12s;
}

.hero--industrial .hero__veil {
  background:
    linear-gradient(90deg, rgba(6, 11, 17, 0.92), rgba(6, 11, 17, 0.74) 46%, rgba(6, 11, 17, 0.28)),
    linear-gradient(180deg, rgba(6, 11, 17, 0.06), rgba(6, 11, 17, 0.78));
}

.hero--industrial .hero__content {
  padding: 104px 0 80px;
}

.hero--industrial h1 {
  max-width: 930px;
  font-size: clamp(46px, 5.6vw, 82px);
  text-transform: none;
}

.hero--industrial .hero__lead {
  max-width: 790px;
}

.hero__social {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.hero__social span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: transparent;
}

.hero__social span:first-child {
  background: var(--green);
  border-color: var(--green);
}

.industrial-metrics {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(6, 11, 17, 0.72);
  backdrop-filter: none;
}

.industrial-metrics div {
  background: rgba(6, 11, 17, 0.56);
}

.industrial-metrics strong::after {
  content: "+";
}

.industrial-strip {
  color: var(--paper);
  background: var(--green);
}

.industrial-strip__inner {
  min-height: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.industrial-strip__inner span {
  position: relative;
  padding-left: 18px;
}

.industrial-strip__inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%) rotate(45deg);
}

.about-company {
  background: var(--paper);
}

.about-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.about-company__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-company__image::before {
  content: "";
  position: absolute;
  inset: 26px -24px -24px 44px;
  z-index: 0;
  border: 8px solid var(--green);
}

.about-company__image img {
  position: relative;
  z-index: 1;
  width: calc(100% - 28px);
  height: 520px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.about-company__copy {
  padding-left: 20px;
}

.about-company__copy p {
  color: var(--muted);
}

.industrial-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.industrial-product-card,
.industrial-sector-card {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-strong);
  isolation: isolate;
}

.industrial-product-card img,
.industrial-sector-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 700ms ease, filter 700ms ease;
}

.industrial-product-card::before,
.industrial-sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.14), rgba(5, 10, 16, 0.86)),
    linear-gradient(90deg, rgba(5, 10, 16, 0.62), rgba(5, 10, 16, 0.1));
}

.industrial-product-card::after,
.industrial-sector-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--green);
  transition: width 320ms ease;
}

.industrial-product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.industrial-product-card span {
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--paper);
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industrial-product-card h3 {
  margin-bottom: 18px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 34px;
  color: var(--paper);
}

.industrial-product-card em {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.industrial-product-card:hover img,
.industrial-sector-card:hover img {
  transform: scale(1.08);
  filter: saturate(0.94) contrast(1.1);
}

.industrial-product-card:hover::after,
.industrial-sector-card:hover::after {
  width: 100%;
}

.service-highlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

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

.service-mini-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.service-mini-grid span {
  display: inline-flex;
  min-width: 42px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #8bd276;
  border: 1px solid rgba(139, 210, 118, 0.45);
  font-weight: 900;
}

.service-mini-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.industrial-sector-card {
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px 16px;
  text-align: center;
}

.industrial-sector-card strong {
  position: relative;
  display: block;
  color: var(--paper);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.quote-band--industrial {
  background:
    linear-gradient(rgba(7, 13, 20, 0.88), rgba(7, 13, 20, 0.9)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=82") center/cover fixed;
}

.location-preview {
  background: var(--surface);
}

.location-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: stretch;
}

.contact-list--compact {
  max-width: 620px;
}

.map-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(11, 17, 24, 0.84), rgba(11, 17, 24, 0.58)),
    url("https://images.unsplash.com/photo-1577415124269-fc1140a69e91?auto=format&fit=crop&w=1200&q=82") center/cover;
  border-left: 8px solid var(--green);
}

.map-panel span {
  margin-bottom: 10px;
  color: #8bd276;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel strong {
  max-width: 520px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 36px;
  line-height: 1.12;
}

.reveal {
  transform: translateY(36px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.page-hero {
  min-height: 500px;
  align-items: center;
  border-bottom: 6px solid var(--green);
}

.page-hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.93), rgba(5, 10, 16, 0.73) 50%, rgba(5, 10, 16, 0.28)),
    linear-gradient(180deg, rgba(5, 10, 16, 0.18), rgba(5, 10, 16, 0.82));
}

.page-hero__content {
  padding: 92px 0;
}

.page-hero h1 {
  max-width: 900px;
}

.product-detail,
.catalog-card,
.spec-card,
.sector-card,
.sector-panel,
.timeline-item,
.values-grid article,
.process-panel article,
.proof-list article,
.step-card,
.contact-form,
.contact-list a,
.contact-list div,
.table-wrap,
.cta-panel {
  border-radius: 0;
  box-shadow: none;
}

.product-detail,
.catalog-card,
.sector-panel,
.timeline-item,
.values-grid article,
.process-panel article,
.proof-list article,
.step-card {
  border-top: 4px solid var(--green);
}

.product-detail {
  border-color: #cfd5d9;
}

.product-detail > div {
  border-left: 1px solid var(--line);
}

.catalog-card,
.sector-panel,
.timeline-item,
.values-grid article,
.process-panel article,
.proof-list article,
.step-card {
  background:
    linear-gradient(180deg, rgba(47, 125, 34, 0.04), rgba(255, 255, 255, 0) 48%),
    var(--paper);
}

.catalog-table th {
  background: #101720;
}

.catalog-table caption {
  color: var(--ink-strong);
  text-transform: uppercase;
}

.contact-form {
  border-top: 6px solid var(--green);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-search input {
  border-radius: 0;
}

.service-row {
  border-radius: 0;
  box-shadow: none;
  border-top: 5px solid var(--green);
}

.service-row__copy h2 {
  color: var(--ink-strong);
}

.service-row__copy span,
.values-grid span,
.process-panel span,
.step-card span,
.sector-panel > span,
.timeline-item span {
  border-radius: 0;
}

@keyframes industrialHeroFade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  7%,
  33% {
    opacity: 1;
  }
  43%,
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@media (max-width: 1180px) {
  .industrial-sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industrial-product-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 940px) {
  .main-nav__inner {
    min-height: 76px;
  }

  .nav-menu {
    top: 76px;
  }

  .about-company__grid,
  .service-highlight__grid,
  .location-preview__grid {
    grid-template-columns: 1fr;
  }

  .industrial-product-grid {
    grid-template-columns: 1fr;
  }

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

  .about-company__image,
  .about-company__image img {
    min-height: 360px;
    height: 360px;
  }

  .about-company__copy {
    padding-left: 0;
  }
}

@media (max-width: 660px) {
  .hero--industrial {
    min-height: 740px;
  }

  .hero__social {
    display: none;
  }

  .industrial-strip__inner {
    justify-content: flex-start;
  }

  .industrial-product-card,
  .industrial-sector-card {
    min-height: 310px;
  }

  .industrial-sector-grid,
  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .map-panel strong {
    font-size: 28px;
  }

  .page-hero {
    min-height: 410px;
  }

  .page-hero__content {
    padding: 70px 0 54px;
  }
}

/* Motion layer */
.motion-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #8bd276, var(--green));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-header,
.brand img,
.brand__wordmark,
.main-nav__inner {
  transition:
    box-shadow 260ms ease,
    transform 260ms ease,
    background 260ms ease;
}

body.is-scrolled .site-header {
  box-shadow: 0 14px 36px rgba(5, 10, 16, 0.18);
}

body.is-scrolled .brand img {
  transform: translateY(-1px) scale(0.94) rotate(-2deg);
}

body.is-scrolled .brand__wordmark {
  transform: translateY(-1px);
}

.button,
.nav-cta,
.industrial-product-card,
.industrial-sector-card,
.feature-card,
.sector-panel,
.service-mini-grid article {
  transform-style: preserve-3d;
  will-change: transform;
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.button::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.34), transparent 65%);
  transform: translateX(-75%) skewX(-16deg);
  transition: transform 620ms ease;
}

.button:hover::before,
.nav-cta:hover::before {
  transform: translateX(75%) skewX(-16deg);
}

.button > *,
.nav-cta > * {
  position: relative;
  z-index: 1;
}

.button--primary {
  animation: industrialPulse 3.8s ease-in-out infinite;
}

.hero--industrial {
  isolation: isolate;
}

.hero--industrial::before,
.hero--industrial::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero--industrial::before {
  left: -16%;
  top: 18%;
  width: 42%;
  height: 160%;
  border-left: 1px solid rgba(139, 210, 118, 0.18);
  border-right: 1px solid rgba(139, 210, 118, 0.12);
  background: linear-gradient(90deg, transparent, rgba(139, 210, 118, 0.08), transparent);
  transform: rotate(22deg);
  animation: industrialSweep 8s ease-in-out infinite;
}

.hero--industrial::after {
  right: 8%;
  bottom: 14%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(139, 210, 118, 0.58);
  transform: translateY(var(--scroll-lift, 0)) rotate(45deg);
  animation: floatPlate 5.5s ease-in-out infinite;
}

.hero--industrial .hero__content {
  z-index: 2;
  transform: translateY(calc(var(--scroll-lift, 0) * -0.22));
  transition: transform 120ms linear;
}

.hero__social span {
  animation: dotPulse 2.4s ease-in-out infinite;
}

.hero__social span:nth-child(2) {
  animation-delay: 280ms;
}

.hero__social span:nth-child(3) {
  animation-delay: 560ms;
}

.industrial-strip {
  position: relative;
  overflow: hidden;
}

.industrial-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 48%);
  transform: translateX(-100%);
  animation: stripSheen 5s ease-in-out infinite;
}

.industrial-strip__inner {
  position: relative;
  z-index: 1;
}

.motion-ready .reveal {
  opacity: 0;
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal[data-reveal="rise"] {
  transform: translateY(34px);
}

.motion-ready .reveal[data-reveal="left"] {
  transform: translateX(-34px);
}

.motion-ready .reveal[data-reveal="right"] {
  transform: translateX(34px);
}

.motion-ready .reveal[data-reveal="scale"] {
  transform: translateY(24px) scale(0.97);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.industrial-product-card,
.industrial-sector-card,
.feature-card,
.sector-panel,
.service-mini-grid article {
  transform:
    translateY(var(--tilt-lift, 0))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.industrial-product-card:nth-child(odd),
.industrial-sector-card:nth-child(odd) {
  animation: cardFloatA 7s ease-in-out infinite;
}

.industrial-product-card:nth-child(even),
.industrial-sector-card:nth-child(even) {
  animation: cardFloatB 8s ease-in-out infinite;
}

.industrial-product-card:hover,
.industrial-sector-card:hover,
.feature-card:hover,
.sector-panel:hover,
.service-mini-grid article:hover {
  box-shadow: 0 28px 70px rgba(5, 10, 16, 0.24);
}

.about-company__image::before {
  animation: frameFloat 5.8s ease-in-out infinite;
}

.map-panel,
.quote-band--industrial {
  position: relative;
  overflow: hidden;
}

.map-panel::after,
.quote-band--industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.12), transparent 42%);
  transform: translateX(-110%);
  animation: panelScan 6.5s ease-in-out infinite;
  pointer-events: none;
}

.whatsapp-float {
  animation: whatsappFloat 3.5s ease-in-out infinite;
}

@keyframes industrialPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(47, 125, 34, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(47, 125, 34, 0.13), 0 16px 34px rgba(47, 125, 34, 0.2);
  }
}

@keyframes industrialSweep {
  0%,
  100% {
    transform: translateX(-8%) rotate(22deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(18%) rotate(22deg);
    opacity: 0.85;
  }
}

@keyframes floatPlate {
  0%,
  100% {
    transform: translateY(var(--scroll-lift, 0)) rotate(45deg) scale(1);
  }
  50% {
    transform: translateY(calc(var(--scroll-lift, 0) - 14px)) rotate(49deg) scale(1.05);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes stripSheen {
  0%,
  32% {
    transform: translateX(-110%);
  }
  74%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes cardFloatA {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes cardFloatB {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 5px;
  }
}

@keyframes frameFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -8px);
  }
}

@keyframes panelScan {
  0%,
  42% {
    transform: translateX(-115%);
  }
  78%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.motion-reduced .motion-progress {
  display: none;
}

.motion-reduced .industrial-product-card,
.motion-reduced .industrial-sector-card,
.motion-reduced .button--primary,
.motion-reduced .whatsapp-float,
.motion-reduced .about-company__image::before,
.motion-reduced .hero__social span,
.motion-reduced .map-panel::after,
.motion-reduced .quote-band--industrial::before,
.motion-reduced .industrial-strip::before,
.motion-reduced .hero--industrial::before,
.motion-reduced .hero--industrial::after {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .motion-progress {
    display: none;
  }

  .hero--industrial .hero__content {
    transform: none;
  }
}

/* Extracted reference landing */
.reference-page {
  --reference-primary: #0073e6;
  --reference-secondary: #25d366;
  --reference-accent: #ffbf00;
  --reference-ink: #0f1729;
  --reference-muted: #65758b;
  --reference-soft: #f1f5f9;
  --reference-line: #e1e7ef;
  --reference-footer: #020617;
  --reference-white: #ffffff;
  color: var(--reference-ink);
  background: var(--reference-white);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.reference-page h1,
.reference-page h2,
.reference-page h3,
.reference-page p {
  margin-top: 0;
}

.reference-page h1,
.reference-page h2,
.reference-page h3 {
  font-family: inherit;
  letter-spacing: 0;
}

.reference-page h1 {
  max-width: 1000px;
  margin-bottom: 32px;
  color: var(--reference-white);
  font-size: clamp(50px, 5.9vw, 96px);
  font-weight: 700;
  line-height: 1.04;
}

.reference-page h2 {
  color: var(--reference-ink);
  font-size: clamp(36px, 3.55vw, 60px);
  font-weight: 700;
  line-height: 1.14;
}

.reference-page h3 {
  color: var(--reference-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.reference-page .page-transition-frame {
  background: var(--reference-white);
}

.reference-shell {
  width: min(1920px, calc(100% - 96px));
  margin: 0 auto;
}

.reference-hero {
  position: relative;
  min-height: 1240px;
  overflow: hidden;
  color: var(--reference-white);
  background: var(--reference-footer);
}

.reference-hero__media,
.reference-hero__shade {
  position: absolute;
  inset: 0;
}

.reference-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--reference-footer);
  filter: saturate(0.9) contrast(1.04);
}

.reference-hero__shade {
  background:
    linear-gradient(to right, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.48)),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.22) 46%, rgba(2, 6, 23, 0.84));
}

.reference-hero__top {
  position: relative;
  z-index: 1;
  padding-top: 340px;
}

.reference-hero__copy {
  max-width: 1180px;
  padding-left: 330px;
}

.reference-badge {
  width: max-content;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 58px;
  padding: 0 48px;
  color: var(--reference-white);
  background: rgba(255, 191, 0, 0.18);
  border: 1px solid rgba(255, 191, 0, 0.68);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 30px;
  font-weight: 700;
}

.reference-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--reference-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.reference-hero__lead {
  max-width: 1040px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.45;
}

.reference-nav-wrap {
  position: relative;
  z-index: 3;
  width: min(2068px, calc(100% - 104px));
  margin: 34px auto 0;
}

.reference-nav {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px 44px 18px 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 3px rgba(15, 23, 41, 0.1);
}

.reference-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(490px, 42vw);
  min-height: 96px;
  padding: 0;
}

.reference-brand img {
  width: 100%;
  height: auto;
  background: var(--reference-white);
}

.reference-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 48px;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
}

.reference-menu a {
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  color: var(--reference-ink);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-menu a::after {
  bottom: 0;
  height: 4px;
  background: var(--reference-primary);
  transform-origin: left;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-page .reference-menu a:not(.nav-cta)::after {
  background: var(--reference-primary);
}

.reference-menu a:hover,
.reference-menu a[aria-current="page"] {
  color: var(--reference-primary);
}

.reference-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 26px;
  padding-top: 42px;
  padding-left: 330px;
}

.reference-button {
  min-width: 286px;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reference-button--primary {
  color: var(--reference-white);
  background: var(--reference-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reference-button--primary:hover {
  background: #0068d4;
}

.reference-button--ghost,
.reference-button--outline {
  color: var(--reference-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.reference-button--ghost:hover,
.reference-button--outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.reference-button--light {
  color: var(--reference-primary);
  background: var(--reference-white);
  border-color: var(--reference-white);
}

.reference-section {
  padding: 154px 0;
}

.reference-section--muted {
  background: var(--reference-soft);
}

.reference-about {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 116px;
  align-items: center;
}

.reference-about__copy {
  max-width: 820px;
}

.reference-about__copy h2 {
  margin-bottom: 46px;
}

.reference-about__copy p {
  margin-bottom: 38px;
  color: var(--reference-muted);
  font-size: 29px;
  line-height: 1.58;
}

.reference-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 44px;
}

.reference-stat-card,
.reference-testimonial-card {
  background: var(--reference-white);
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.reference-stat-card {
  min-height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.reference-stat-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--reference-primary);
  font-size: clamp(54px, 4.2vw, 76px);
  font-weight: 700;
  line-height: 1;
}

.reference-stat-card span {
  color: var(--reference-muted);
  font-size: 25px;
}

.reference-testimonials {
  background: var(--reference-white);
}

.reference-heading {
  max-width: 1040px;
  margin: 0 auto 120px;
  text-align: center;
}

.reference-heading h2 {
  margin-bottom: 28px;
}

.reference-heading p {
  color: var(--reference-muted);
  font-size: 29px;
  line-height: 1.38;
}

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

.reference-testimonial-card {
  min-height: 276px;
  padding: 40px 44px;
}

.reference-person {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.reference-person h3 {
  margin-bottom: 6px;
}

.reference-person p {
  margin-bottom: 10px;
  color: var(--reference-muted);
  font-size: 24px;
  line-height: 1.2;
}

.reference-avatar {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--reference-white);
  border-radius: 18px;
  font-size: 28px;
  font-weight: 700;
}

.reference-avatar--blue {
  background: #3b82f6;
}

.reference-avatar--green {
  background: #22c55e;
}

.reference-avatar--purple {
  background: #a855f7;
}

.reference-avatar--orange {
  background: #f97316;
}

.reference-stars {
  color: var(--reference-accent);
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
}

.reference-stars span {
  color: #cbd5e1;
}

.reference-testimonial-card blockquote {
  margin: 0;
  color: var(--reference-muted);
  font-size: 28px;
  font-style: italic;
  line-height: 1.58;
}

.reference-cta {
  padding: 148px 0 158px;
  color: var(--reference-white);
  background: var(--reference-primary);
  text-align: center;
}

.reference-cta h2 {
  max-width: 1180px;
  margin: 0 auto 38px;
  color: var(--reference-white);
}

.reference-cta p {
  max-width: 930px;
  margin: 0 auto 64px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  line-height: 1.42;
}

.reference-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.reference-footer {
  padding: 108px 0 60px;
  color: #e2e8f0;
  background: var(--reference-footer);
}

.reference-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 120px;
  padding-bottom: 80px;
  border-bottom: 1px solid #1e293b;
}

.reference-footer h2 {
  margin-bottom: 34px;
  color: var(--reference-white);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.reference-footer p,
.reference-footer a,
.reference-footer span {
  color: #d1d5db;
  font-size: 27px;
  line-height: 1.55;
}

.reference-footer p {
  max-width: 610px;
  margin-bottom: 38px;
}

.reference-contact-list {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-contact-list li {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reference-contact-list svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: #d1d5db;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reference-footer__links {
  display: grid;
  gap: 24px;
}

.reference-footer a {
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-footer a:hover {
  color: var(--reference-white);
}

.reference-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 54px;
}

.reference-footer__bottom p {
  max-width: none;
  margin: 0;
  color: #94a3b8;
}

.reference-footer__bottom nav {
  display: flex;
  gap: 58px;
}

.reference-footer__bottom a {
  color: #94a3b8;
}

.reference-whatsapp {
  width: 88px;
  height: 88px;
  right: 54px;
  bottom: 56px;
  background: var(--reference-secondary);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
}

.reference-whatsapp svg {
  width: 45px;
  height: 45px;
}

.reference-page .motion-progress {
  height: 4px;
  background: linear-gradient(90deg, var(--reference-primary), var(--reference-accent), var(--reference-primary));
}

.reference-page .page-transition-overlay::before {
  background:
    radial-gradient(circle at center, #ffffff 0 62%, #f1f5f9 63%, #ffffff 100%);
  box-shadow:
    0 0 0 1px rgba(0, 115, 230, 0.12),
    0 26px 90px rgba(15, 23, 41, 0.24);
}

.reference-page .nav-toggle {
  border-color: var(--reference-line);
  background: var(--reference-white);
}

.reference-page .nav-toggle span:not(.sr-only) {
  background: var(--reference-ink);
}

.reference-page .reference-nav__toggle {
  display: none;
}

@media (max-width: 1280px) {
  .reference-shell,
  .reference-nav-wrap {
    width: min(1180px, calc(100% - 48px));
  }

  .reference-hero {
    min-height: 1010px;
  }

  .reference-hero__top {
    padding-top: 210px;
  }

  .reference-hero__copy,
  .reference-hero__actions {
    padding-left: 150px;
  }

  .reference-menu {
    gap: 28px;
    font-size: 21px;
  }

  .reference-brand {
    width: min(410px, 39vw);
  }
}

@media (max-width: 940px) {
  .reference-shell,
  .reference-nav-wrap {
    width: min(100% - 32px, 720px);
  }

  .reference-page h1 {
    font-size: clamp(42px, 12vw, 72px);
  }

  .reference-page h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .reference-hero {
    min-height: 900px;
  }

  .reference-hero__top {
    padding-top: 150px;
  }

  .reference-hero__copy,
  .reference-hero__actions {
    padding-left: 0;
  }

  .reference-badge {
    min-height: 64px;
    margin-bottom: 34px;
    padding: 0 24px;
    font-size: 20px;
  }

  .reference-badge svg {
    width: 28px;
    height: 28px;
  }

  .reference-hero__lead {
    font-size: 23px;
  }

  .reference-nav {
    min-height: 92px;
    padding: 14px 18px;
  }

  .reference-brand {
    width: min(330px, 68vw);
    min-height: 68px;
  }

  .reference-page .reference-nav__toggle {
    display: inline-flex;
  }

  .reference-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--reference-line);
    border-radius: 12px;
    background: var(--reference-white);
    box-shadow: 0 18px 46px rgba(15, 23, 41, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .reference-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .reference-menu a {
    min-height: 54px;
    padding: 0 14px;
    font-size: 18px;
  }

  .reference-menu a::after {
    display: none;
  }

  .reference-hero__actions,
  .reference-cta__actions,
  .reference-footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .reference-button {
    width: 100%;
    min-width: 0;
    font-size: 21px;
  }

  .reference-about,
  .reference-testimonial-grid,
  .reference-footer__grid {
    grid-template-columns: 1fr;
  }

  .reference-about {
    gap: 64px;
  }

  .reference-metrics {
    gap: 22px;
  }

  .reference-section,
  .reference-cta {
    padding: 92px 0;
  }

  .reference-heading {
    margin-bottom: 56px;
  }

  .reference-footer__grid {
    gap: 42px;
  }

  .reference-footer__bottom {
    gap: 24px;
  }

  .reference-footer__bottom nav {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .reference-shell,
  .reference-nav-wrap {
    width: calc(100% - 28px);
  }

  .reference-hero {
    min-height: 820px;
  }

  .reference-hero__top {
    padding-top: 96px;
  }

  .reference-nav-wrap {
    margin-top: 28px;
  }

  .reference-nav {
    min-height: 78px;
  }

  .reference-brand {
    width: min(260px, 64vw);
    min-height: 54px;
  }

  .reference-hero__actions {
    padding-top: 28px;
  }

  .reference-about__copy p,
  .reference-heading p,
  .reference-testimonial-card blockquote,
  .reference-footer p,
  .reference-footer a,
  .reference-footer span {
    font-size: 18px;
  }

  .reference-cta p {
    font-size: 20px;
  }

  .reference-metrics {
    grid-template-columns: 1fr;
  }

  .reference-stat-card {
    min-height: 160px;
  }

  .reference-testimonial-card {
    padding: 26px 22px;
  }

  .reference-person {
    align-items: flex-start;
    gap: 16px;
  }

  .reference-avatar {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    font-size: 21px;
  }

  .reference-person h3 {
    font-size: 20px;
  }

  .reference-person p,
  .reference-stat-card span {
    font-size: 18px;
  }

  .reference-footer {
    padding: 72px 0 38px;
  }

  .reference-footer__grid {
    padding-bottom: 44px;
  }

  .reference-contact-list svg {
    width: 26px;
    height: 26px;
  }

  .reference-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }

  .reference-whatsapp svg {
    width: 34px;
    height: 34px;
  }
}

.contact-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  border-bottom: 0;
}

body:not(.brand-admin-page) .reference-hero h1,
body:not(.brand-admin-page) .page-hero h1,
body:not(.brand-admin-page) .reference-service-hero h1,
body:not(.brand-admin-page) .reference-cta h2,
body:not(.brand-admin-page) .quote-band h2 {
  color: var(--hs-white);
}

body:not(.brand-admin-page) .reference-hero__lead,
body:not(.brand-admin-page) .page-hero__content p:last-child,
body:not(.brand-admin-page) .reference-service-hero p,
body:not(.brand-admin-page) .reference-cta p,
body:not(.brand-admin-page) .quote-band p {
  color: rgba(255, 255, 255, 0.82);
}

body:not(.brand-admin-page) .reference-hero .reveal,
body:not(.brand-admin-page) .page-hero .reveal,
body:not(.brand-admin-page) .reference-service-hero .reveal,
body:not(.brand-admin-page) .reference-inner-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 940px) {
  .reference-header .reference-nav,
  .main-nav__inner {
    width: 100%;
    position: relative;
  }

  .reference-page .reference-nav__toggle,
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid #bfdbfe;
    background: #eef6ff;
    box-shadow: 0 10px 24px rgba(0, 115, 230, 0.12);
    transform: translateY(-50%);
  }
}

/* Reference source alignment: matches the copied Tailwind page scale */
.reference-page {
  font-size: 16px;
  line-height: 1.5;
}

.reference-page h1 {
  max-width: 768px;
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
}

.reference-page h2 {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
}

.reference-page h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.reference-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.reference-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--reference-line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}

.reference-header .reference-nav-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.reference-header .reference-nav {
  min-height: 80px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.reference-brand {
  width: auto;
  min-height: 0;
}

.reference-brand img {
  width: auto;
  height: 56px;
  max-width: min(288px, 58vw);
  object-fit: contain;
}

.reference-menu {
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.reference-menu a {
  min-height: 80px;
}

.reference-menu a::after {
  bottom: 0;
  height: 2px;
}

.reference-page .reference-nav__toggle {
  width: 40px;
  height: 40px;
}

.reference-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-hero__shade {
  background: linear-gradient(to right, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.5));
}

.reference-hero__top {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.reference-hero__copy {
  max-width: 768px;
  padding-left: 0;
}

.reference-badge {
  min-height: 0;
  gap: 12px;
  margin-bottom: 32px;
  padding: 12px 24px;
  border-color: rgba(255, 191, 0, 0.3);
  background: rgba(255, 191, 0, 0.2);
  font-size: 16px;
  font-weight: 500;
}

.reference-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.reference-anniversary {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: 14px 34px 14px 14px;
  border: 2px solid rgba(255, 216, 107, 0.55);
  border-radius: 999px;
  color: var(--reference-white);
  background:
    radial-gradient(circle at 19% 50%, rgba(255, 216, 107, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 216, 107, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(5, 12, 22, 0.66);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 236, 158, 0.08);
  backdrop-filter: blur(14px);
}

.reference-anniversary img {
  width: clamp(106px, 9.6vw, 141px);
  height: auto;
  display: block;
  flex: 0 0 auto;
  background: transparent !important;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
  transform: rotate(-3deg);
}

.reference-anniversary__text {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.reference-anniversary__text span,
.reference-anniversary__text strong {
  display: block;
  line-height: 1.15;
}

.reference-anniversary__text span {
  color: #ffe58b;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.reference-anniversary__text strong {
  max-width: 260px;
  color: var(--reference-white);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
}

.reference-hero__lead {
  max-width: 672px;
  margin-bottom: 32px;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.625;
}

.reference-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.reference-feature-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--reference-white);
  font-size: 14px;
  font-weight: 500;
}

.reference-feature-list span::before {
  content: "\2713";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--reference-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.reference-hero__actions,
.reference-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
}

.reference-button {
  min-width: 0;
  min-height: 44px;
  gap: 8px;
  padding: 0 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

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

.reference-about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.reference-about__copy {
  max-width: none;
}

.reference-about__copy h2 {
  max-width: 590px;
  margin-bottom: 24px;
}

.reference-about__copy p {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 1.625;
}

.reference-metrics {
  gap: 24px;
}

.reference-stat-card,
.reference-testimonial-card {
  border-radius: 12px;
}

.reference-stat-card {
  min-height: 142px;
  padding: 24px;
}

.reference-stat-card strong {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
}

.reference-stat-card span {
  font-size: 14px;
}

.reference-heading {
  max-width: 672px;
  margin-bottom: 48px;
}

.reference-heading h2 {
  margin-bottom: 16px;
}

.reference-heading p {
  font-size: 16px;
  line-height: 1.5;
}

.reference-testimonial-grid {
  gap: 24px;
}

.reference-testimonial-card {
  min-height: 0;
  padding: 24px;
}

.reference-person {
  gap: 16px;
  margin-bottom: 18px;
}

.reference-person h3 {
  margin-bottom: 4px;
}

.reference-person p {
  margin-bottom: 6px;
  font-size: 14px;
}

.reference-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 16px;
}

.reference-stars {
  font-size: 16px;
  letter-spacing: 1px;
}

.reference-testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.625;
}

.reference-cta {
  padding: 80px 0;
}

.reference-cta__inner {
  max-width: 896px;
}

.reference-cta h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.reference-cta p {
  max-width: 672px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.5;
}

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

.reference-footer {
  margin-top: 80px;
  padding: 48px 0;
}

.reference-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 32px;
}

.reference-footer h2 {
  margin-bottom: 16px;
  font-size: 20px;
}

.reference-footer p,
.reference-footer a,
.reference-footer span {
  font-size: 16px;
  line-height: 1.625;
}

.reference-footer p {
  max-width: 430px;
  margin-bottom: 16px;
}

.reference-footer section:first-child p:last-child,
.reference-footer__bottom p,
.reference-footer__bottom a {
  font-size: 14px;
}

.reference-contact-list {
  gap: 12px;
}

.reference-contact-list li {
  gap: 12px;
}

.reference-contact-list svg {
  width: 20px;
  height: 20px;
}

.reference-footer__links {
  gap: 8px;
}

.reference-footer__bottom {
  gap: 16px;
  padding-top: 32px;
}

.reference-footer__bottom nav {
  gap: 24px;
}

.reference-whatsapp {
  width: 56px;
  height: 56px;
  right: 24px;
  bottom: 24px;
}

.reference-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .reference-page h1 {
    font-size: 48px;
  }

  .reference-page h2 {
    font-size: 36px;
  }

  .reference-hero__lead {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .reference-page h1 {
    font-size: 60px;
  }
}

@media (max-width: 940px) {
  .reference-header .reference-nav {
    min-height: 72px;
  }

  .reference-page .reference-nav__toggle {
    display: inline-flex;
  }

  .reference-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--reference-line);
    border-radius: 12px;
    background: var(--reference-white);
    box-shadow: 0 18px 46px rgba(15, 23, 41, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .reference-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .reference-menu a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 15px;
  }

  .reference-about,
  .reference-testimonial-grid,
  .reference-footer__grid {
    grid-template-columns: 1fr;
  }

  .reference-about {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .reference-shell,
  .reference-header .reference-nav-wrap {
    width: calc(100% - 32px);
  }

  .reference-page h1 {
    font-size: 36px;
  }

  .reference-page h2 {
    font-size: 30px;
  }

  .reference-anniversary {
    grid-template-columns: auto;
    justify-items: center;
    width: min(100%, 340px);
    padding: 18px;
    border-radius: 22px;
    text-align: center;
  }

  .reference-anniversary img {
    width: 122px;
  }

  .reference-anniversary__text strong {
    max-width: 100%;
  }

  .reference-hero {
    min-height: auto;
  }

  .reference-hero__top {
    padding: 64px 0;
  }

  .reference-hero__lead,
  .reference-cta p {
    font-size: 18px;
  }

  .reference-hero__actions,
  .reference-cta__actions,
  .reference-footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .reference-hero__actions {
    padding-right: 64px;
  }

  .reference-button {
    width: 100%;
  }

  .reference-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .reference-metrics {
    grid-template-columns: 1fr;
  }

  .reference-footer__bottom nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* Reference inner pages */
.reference-inner-hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 115, 230, 0.12), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(37, 211, 102, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(0, 115, 230, 0.1), #ffffff 48%, rgba(37, 211, 102, 0.1));
}

.reference-products-hero,
.reference-contact-hero {
  min-height: clamp(360px, 46vw, 560px);
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: var(--reference-white);
}

.reference-products-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.68) 48%, rgba(0, 45, 91, 0.28)),
    linear-gradient(180deg, rgba(0, 115, 230, 0.16), rgba(2, 6, 23, 0.34)),
    url("hero-produtos.jpg");
}

.reference-contact-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7) 52%, rgba(0, 45, 91, 0.32)),
    linear-gradient(180deg, rgba(0, 115, 230, 0.18), rgba(2, 6, 23, 0.34)),
    url("hero-contato.jpg");
}

.reference-products-hero .reference-inner-hero__content,
.reference-contact-hero .reference-inner-hero__content {
  max-width: 900px;
  text-align: left;
}

.reference-products-hero h1,
.reference-contact-hero h1 {
  max-width: 860px;
  margin-right: 0;
  margin-left: 0;
  color: var(--reference-white);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.reference-products-hero p,
.reference-contact-hero p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.86);
}

.reference-inner-hero__content {
  max-width: 768px;
  text-align: center;
}

.reference-inner-hero h1 {
  margin-right: auto;
  margin-left: auto;
  color: var(--reference-ink);
  letter-spacing: 0;
  text-wrap: balance;
}

.reference-inner-hero p {
  max-width: 672px;
  margin: 0 auto;
  color: var(--reference-muted);
  font-size: 18px;
  line-height: 1.625;
}

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

.reference-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reference-product-card {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  background: var(--reference-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.reference-product-card:hover {
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
  transform: translateY(-1px);
}

.reference-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.reference-card-head > div {
  min-width: 0;
}

.reference-iconbox {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--reference-primary);
  background: rgba(0, 115, 230, 0.1);
}

.reference-iconbox svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-product-card h2 {
  margin: 0 0 8px;
  color: var(--reference-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.reference-product-card p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.625;
  overflow-wrap: break-word;
}

.reference-product-details {
  margin-top: auto;
}

.reference-product-details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--reference-primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

.reference-product-details summary::-webkit-details-marker {
  display: none;
}

.reference-product-details summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.reference-product-details[open] summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.reference-product-details .open {
  display: none;
}

.reference-product-details[open] .closed {
  display: none;
}

.reference-product-details[open] .open {
  display: inline;
}

.reference-product-details ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.reference-product-details li {
  display: flex;
  gap: 8px;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.45;
}

.reference-product-details li::before {
  content: "\2022";
  color: var(--reference-secondary);
}

.reference-product-jump {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid rgba(0, 115, 230, 0.18);
  border-radius: 8px;
  color: var(--reference-primary);
  background: rgba(0, 115, 230, 0.06);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.reference-product-jump:hover {
  border-color: rgba(0, 115, 230, 0.32);
  background: rgba(0, 115, 230, 0.1);
  transform: translateY(-1px);
}

.reference-button--secondary {
  color: var(--reference-white);
  border-color: var(--reference-secondary);
  background: var(--reference-secondary);
}

.reference-button--secondary:hover {
  background: #20bd5c;
}

.reference-inner-cta {
  text-align: center;
}

.reference-inner-cta .reference-shell {
  max-width: 896px;
}

.reference-inner-cta h2 {
  color: var(--reference-ink);
  text-wrap: balance;
}

.reference-inner-cta p {
  max-width: 672px;
  margin: 0 auto 32px;
  color: var(--reference-muted);
  font-size: 18px;
  line-height: 1.5;
}

.reference-service-hero {
  position: relative;
  display: flex;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--reference-white);
  background: var(--reference-footer);
}

.reference-service-hero__media,
.reference-service-hero__shade {
  position: absolute;
  inset: 0;
}

.reference-service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-service-hero__shade {
  background: linear-gradient(to right, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.5));
}

.reference-service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  padding: 80px 0;
  text-align: center;
}

.reference-service-hero h1 {
  max-width: 896px;
  margin-right: auto;
  margin-left: auto;
  color: var(--reference-white);
  text-wrap: balance;
}

.reference-service-hero p {
  max-width: 768px;
  margin: 0 auto;
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.625;
}

.reference-services-list {
  display: grid;
  gap: 80px;
}

.reference-service-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.reference-service-card--reverse .reference-service-visual {
  order: 2;
}

.reference-service-card--reverse .reference-service-copy {
  order: 1;
}

.reference-service-visual {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--reference-primary);
  background: linear-gradient(135deg, rgba(0, 115, 230, 0.2), rgba(37, 211, 102, 0.2));
}

.reference-service-visual svg {
  width: 96px;
  height: 96px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-service-visual--image {
  display: block;
  overflow: hidden;
  background: var(--reference-soft);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.reference-service-visual--image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.reference-service-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reference-service-title h2 {
  margin: 0;
  color: var(--reference-ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.22;
}

.reference-service-copy p {
  max-width: 65ch;
  margin: 0;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 1.625;
}

.reference-service-cta {
  background: linear-gradient(135deg, var(--reference-primary), #1e85ea);
}

.reference-kicker--light {
  color: rgba(255, 255, 255, 0.82);
}

.reference-service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

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

.reference-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  text-align: left;
}

.reference-heading--split h2 {
  margin-bottom: 0;
}

.reference-heading--split > p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.reference-capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.reference-capability-card {
  overflow: hidden;
  border: 1px solid var(--reference-line);
  border-radius: 14px;
  background: var(--reference-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.reference-capability-card:hover {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.reference-capability-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f8fafc;
}

.reference-capability-card div {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.reference-capability-card span {
  color: var(--reference-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-capability-card h3 {
  margin: 0;
  color: var(--reference-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.reference-capability-card p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.55;
}

.reference-service-workflow .reference-heading {
  margin-bottom: 32px;
}

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

.reference-process-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--reference-line);
  border-radius: 14px;
  background: var(--reference-white);
}

.reference-process-card span {
  display: inline-flex;
  min-width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--reference-primary);
  background: rgba(0, 115, 230, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.reference-process-card h3 {
  margin: 0 0 10px;
  color: var(--reference-ink);
  font-size: 18px;
  line-height: 1.25;
}

.reference-process-card p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.55;
}

.reference-services-gallery-section {
  background: var(--reference-white);
}

.reference-services-gallery-section .reference-heading {
  margin-bottom: 28px;
}

.reference-service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.reference-service-tabs::-webkit-scrollbar {
  display: none;
}

.reference-service-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--reference-line);
  border-radius: 999px;
  color: var(--reference-ink);
  background: var(--reference-white);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.reference-service-tabs a:hover {
  border-color: rgba(0, 115, 230, 0.35);
  color: var(--reference-primary);
  transform: translateY(-1px);
}

.reference-service-groups {
  display: grid;
  gap: 48px;
}

.reference-service-group {
  scroll-margin-top: 110px;
  padding-top: 32px;
  border-top: 1px solid var(--reference-line);
}

.reference-service-group:first-child {
  border-top: 0;
}

.reference-service-group__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.reference-service-group__head h3 {
  margin: 0 0 6px;
  color: var(--reference-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.reference-service-group__head p {
  max-width: 760px;
  margin: 0;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}

.reference-service-group__head > span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--reference-primary);
  background: rgba(0, 115, 230, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.reference-service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reference-service-gallery-card {
  overflow: hidden;
  border: 1px solid var(--reference-line);
  border-radius: 14px;
  background: var(--reference-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.reference-service-gallery-card:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.reference-service-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3f8 100%);
}

.reference-service-gallery-card--contain img {
  object-fit: contain;
  padding: 12px;
}

.reference-service-gallery-card div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.reference-service-gallery-card h4 {
  min-height: 40px;
  margin: 0;
  color: var(--reference-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.reference-service-gallery-card a {
  color: var(--reference-primary);
  font-size: 13px;
  font-weight: 800;
}

.reference-service-gallery-card a:hover {
  text-decoration: underline;
}

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

.reference-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.reference-contact-info h2,
.reference-form-card h2,
.reference-location-section h2 {
  margin-bottom: 32px;
  color: var(--reference-ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.22;
}

.reference-contact-stack {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.reference-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.reference-contact-item h3 {
  margin: 0 0 4px;
  color: var(--reference-ink);
  font-size: 16px;
  font-weight: 500;
}

.reference-contact-item a,
.reference-contact-item p {
  margin: 0;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 1.5;
}

.reference-contact-item a:hover {
  color: var(--reference-primary);
}

.reference-hours-card {
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 12px;
  background: var(--reference-soft);
}

.reference-iconbox--flat {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  background: transparent;
}

.reference-whatsapp-card,
.reference-form-card {
  border: 1px solid var(--reference-line);
  background: var(--reference-white);
}

.reference-whatsapp-card {
  padding: 24px;
  border-radius: 12px;
}

.reference-whatsapp-card h3 {
  margin: 0 0 12px;
  color: var(--reference-ink);
  font-size: 16px;
  font-weight: 600;
}

.reference-whatsapp-card p {
  margin: 0 0 16px;
  color: var(--reference-muted);
  font-size: 14px;
  line-height: 1.5;
}

.reference-whatsapp-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--reference-white);
  background: var(--reference-secondary);
  font-size: 14px;
  font-weight: 500;
}

.reference-whatsapp-button:hover {
  color: var(--reference-white);
  background: #20bd5c;
}

.reference-whatsapp-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-form-card {
  padding: 32px;
  border-radius: 16px;
}

.reference-form-card h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.reference-contact-form {
  display: grid;
  gap: 24px;
}

.reference-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--reference-ink);
  font-size: 14px;
  font-weight: 500;
}

.reference-contact-form input,
.reference-contact-form textarea {
  width: 100%;
  border: 1px solid var(--reference-line);
  border-radius: 8px;
  background: var(--reference-white);
  color: var(--reference-ink);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.reference-contact-form input {
  height: 40px;
  padding: 0 12px;
}

.reference-contact-form textarea {
  min-height: 120px;
  padding: 10px 12px;
  resize: none;
}

.reference-contact-form input:focus,
.reference-contact-form textarea:focus {
  border-color: var(--reference-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.12);
}

.reference-contact-form button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.reference-contact-form button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-contact-form .form-note {
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--reference-muted);
  font-size: 13px;
}

.reference-location-section {
  text-align: center;
}

.reference-location-section h2 {
  margin-bottom: 16px;
}

.reference-location-section p {
  max-width: 672px;
  margin: 0 auto 32px;
  color: var(--reference-muted);
  font-size: 16px;
  line-height: 1.5;
}

.reference-location-card {
  display: inline-flex;
  min-width: min(100%, 672px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  border: 1px solid var(--reference-line);
  border-radius: 16px;
  background: var(--reference-white);
  color: var(--reference-muted);
  font-size: 18px;
}

.reference-location-card svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--reference-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-kicker {
  margin: 0 0 8px;
  color: var(--reference-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reference-materials-section {
  border-top: 1px solid var(--reference-line);
}

.reference-materials-section .reference-heading {
  margin-bottom: 28px;
}

.reference-material-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.reference-material-tabs::-webkit-scrollbar {
  display: none;
}

.reference-material-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--reference-line);
  border-radius: 999px;
  color: var(--reference-ink);
  background: var(--reference-white);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.reference-material-tabs a:hover {
  border-color: rgba(0, 115, 230, 0.35);
  color: var(--reference-primary);
  transform: translateY(-1px);
}

.reference-material-groups {
  display: grid;
  gap: 44px;
}

.reference-material-group {
  scroll-margin-top: 110px;
  padding-top: 32px;
  border-top: 1px solid var(--reference-line);
}

.reference-material-group:first-child {
  border-top: 0;
}

.reference-material-group__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.reference-material-group__head h3 {
  margin: 0 0 6px;
  color: var(--reference-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.reference-material-group__head p {
  max-width: 760px;
  margin: 0;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}

.reference-material-group__head > span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--reference-primary);
  background: rgba(0, 115, 230, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.reference-material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reference-material-card {
  overflow: hidden;
  border: 1px solid var(--reference-line);
  border-radius: 12px;
  background: var(--reference-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.reference-material-card:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.reference-material-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3f8 100%);
}

.reference-material-card div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.reference-material-card h4 {
  min-height: 40px;
  margin: 0;
  color: var(--reference-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.reference-material-card a {
  color: var(--reference-primary);
  font-size: 13px;
  font-weight: 700;
}

.reference-material-card a:hover {
  text-decoration: underline;
}

@media (max-width: 940px) {
  .reference-header .reference-nav {
    position: relative;
    justify-content: center;
  }

  .reference-page .reference-nav__toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 2;
    transform: translateY(-50%);
  }

  .reference-products-grid,
  .reference-contact-grid,
  .reference-material-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .reference-heading--split {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .reference-capability-grid,
  .reference-process-grid,
  .reference-service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-service-card,
  .reference-service-card--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .reference-service-card--reverse .reference-service-visual,
  .reference-service-card--reverse .reference-service-copy {
    order: initial;
  }

  .reference-service-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .reference-header .reference-nav {
    gap: 12px;
  }

  .reference-brand img {
    max-width: min(220px, 64vw);
  }

  .reference-inner-hero,
  .reference-service-hero__content {
    padding: 64px 0;
  }

  .reference-service-hero__content,
  .reference-service-overview .reference-shell,
  .reference-service-workflow .reference-shell,
  .reference-services-gallery-section .reference-shell {
    width: calc(100% - 64px);
  }

  .reference-inner-hero h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.15;
  }

  .reference-service-hero h1 {
    max-width: 300px;
    font-size: 29px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .reference-service-hero p,
  .reference-heading--split > p {
    max-width: 300px;
    font-size: 16px;
  }

  .reference-inner-hero p {
    max-width: 280px;
    overflow-wrap: break-word;
  }

  .reference-inner-hero p,
  .reference-service-hero p,
  .reference-inner-cta p {
    font-size: 16px;
  }

  .reference-service-visual,
  .reference-service-visual--image img {
    min-height: 256px;
  }

  .reference-services-list {
    gap: 64px;
  }

  .reference-service-title {
    align-items: flex-start;
  }

  .reference-service-title h2,
  .reference-contact-info h2,
  .reference-location-section h2 {
    font-size: 24px;
  }

  .reference-service-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reference-capability-grid,
  .reference-process-grid,
  .reference-service-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reference-capability-card h3,
  .reference-process-card h3,
  .reference-service-gallery-card h4 {
    overflow-wrap: anywhere;
  }

  .reference-product-card {
    max-width: 100%;
    min-width: 0;
    padding: 24px;
  }

  .reference-card-head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .reference-card-head > div {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 144px);
  }

  .reference-product-card h2,
  .reference-product-card p {
    max-width: 100%;
  }

  .motion-ready .reveal[data-reveal="left"],
  .motion-ready .reveal[data-reveal="right"] {
    transform: translateY(36px);
  }

  .reference-form-card {
    padding: 24px;
  }

  .reference-location-card {
    flex-direction: column;
    padding: 24px;
    font-size: 16px;
  }

  .reference-material-tabs {
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .reference-material-tabs a {
    white-space: nowrap;
  }

  .reference-service-tabs {
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .reference-service-tabs a {
    white-space: nowrap;
  }

  .reference-service-group__head,
  .reference-material-group__head {
    display: grid;
    gap: 12px;
  }

  .reference-material-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* HiperSteel brand refresh */
.brand img,
.reference-brand img {
  background: transparent;
}

.brand__wordmark strong span {
  color: var(--brand-blue);
}

.brand__wordmark small {
  color: var(--brand-blue);
  letter-spacing: 0.9px;
}

body.is-scrolled .brand img {
  transform: translateY(-1px) scale(0.96);
}

.reference-header .reference-nav {
  min-height: 84px;
  gap: 32px;
}

.reference-brand {
  width: clamp(283px, 30vw, 382px);
  min-height: 0;
}

.reference-brand img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 520 / 112;
  object-fit: contain;
}

@media (max-width: 940px) {
  .reference-header .reference-nav {
    min-height: 76px;
  }

  .reference-brand {
    width: min(293px, 62vw);
  }
}

@media (max-width: 640px) {
  .reference-header .reference-nav {
    min-height: 72px;
  }

  .reference-brand {
    width: min(257px, 58vw);
  }
}

@media (max-width: 380px) {
  .reference-brand {
    width: min(226px, 55vw);
  }
}

/* Adm brand manual */
.brand-admin-page {
  min-height: 100dvh;
  color: #0f1729;
  background: #f6f8fb;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-admin-page h1,
.brand-admin-page h2,
.brand-admin-page h3,
.brand-admin-page p {
  font-family: inherit;
  letter-spacing: 0;
}

.brand-admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100dvh;
}

.brand-admin-sidebar {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  border-right: 1px solid #e1e7ef;
  background: rgba(255, 255, 255, 0.94);
  overflow-y: auto;
}

.brand-admin-logo {
  display: block;
  width: 210px;
}

.brand-admin-logo img {
  width: 100%;
  height: auto;
  background: transparent;
}

.brand-admin-sidebar p {
  margin: 0;
  color: #65758b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-admin-sidebar nav {
  display: grid;
  gap: 4px;
}

.brand-admin-sidebar nav a,
.brand-admin-source {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.brand-admin-sidebar nav a:hover,
.brand-admin-source:hover {
  color: #0073e6;
  background: #eef6ff;
}

.brand-admin-source {
  margin-top: auto;
  border: 1px solid #bfdbfe;
  color: #0073e6;
  background: #f8fbff;
}

.brand-admin-doc {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.brand-admin-hero,
.brand-admin-section {
  border: 1px solid #e1e7ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.brand-admin-hero {
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(circle at top right, rgba(255, 191, 0, 0.16), transparent 34%),
    radial-gradient(circle at top left, rgba(0, 115, 230, 0.13), transparent 32%),
    #ffffff;
}

.brand-admin-kicker {
  margin: 0 0 12px;
  color: #0073e6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-admin-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #0f1729;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.brand-admin-hero > p {
  max-width: 760px;
  margin: 0;
  color: #475569;
  font-size: 19px;
  line-height: 1.62;
}

.brand-admin-callout {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 115, 230, 0.24);
  border-left: 5px solid #0073e6;
  border-radius: 12px;
  background: #f8fbff;
}

.brand-admin-callout strong,
.brand-admin-grid span {
  color: #0f1729;
  font-weight: 800;
}

.brand-admin-callout span {
  color: #334155;
  line-height: 1.55;
}

.brand-admin-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.brand-admin-section h2 {
  margin: 0 0 18px;
  color: #0f1729;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.brand-admin-section h3 {
  margin: 26px 0 10px;
  color: #0f1729;
  font-size: 19px;
  line-height: 1.28;
}

.brand-admin-section p,
.brand-admin-section li {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.brand-admin-section p {
  max-width: 860px;
  margin: 0 0 14px;
}

.brand-admin-section ul,
.brand-admin-section ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.brand-admin-section blockquote {
  margin: 20px 0;
  padding: 20px 22px;
  border-left: 5px solid #ffbf00;
  border-radius: 12px;
  color: #0f1729;
  background: #fff9df;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

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

.brand-admin-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-admin-grid div,
.brand-admin-table div,
.brand-admin-compare div {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e1e7ef;
  border-radius: 12px;
  background: #f8fafc;
}

.brand-admin-grid p,
.brand-admin-table span,
.brand-admin-compare p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

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

.brand-admin-table div {
  display: grid;
  gap: 6px;
}

.brand-admin-table strong {
  color: #0f1729;
}

.brand-admin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-admin-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #005fbe;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 800;
}

.brand-admin-checklist {
  list-style: none;
  padding-left: 0 !important;
}

.brand-admin-checklist li {
  position: relative;
  padding-left: 30px;
}

.brand-admin-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #0073e6;
  box-shadow: inset 0 0 0 4px #e0f2fe;
}

.brand-admin-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.brand-admin-compare div:nth-child(odd) {
  border-color: rgba(34, 197, 94, 0.24);
  background: #f0fdf4;
}

.brand-admin-compare div:nth-child(even) {
  border-color: rgba(239, 68, 68, 0.18);
  background: #fff7f7;
}

.brand-admin-compare strong {
  color: #0f1729;
}

.brand-admin-source--secondary {
  margin-top: auto;
  border-color: #e1e7ef;
  color: #0f1729;
  background: #ffffff;
}

.brand-admin-source--secondary + .brand-admin-source {
  margin-top: 0;
}

.ds-doc code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.ds-hero h1 {
  max-width: 850px;
}

.ds-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ds-color-card,
.ds-product-card,
.ds-form-card,
.ds-token-table div,
.ds-type-list div,
.ds-logo-usage div {
  min-width: 0;
  border: 1px solid #e1e7ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.ds-color-card {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.ds-color-card > span {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
}

.ds-color-card strong,
.ds-token-table strong,
.ds-type-list span,
.ds-logo-usage strong,
.ds-product-card h4,
.ds-form-card h4 {
  color: #0f1729;
}

.ds-color-card code {
  color: #005fbe;
  font-size: 13px;
  font-weight: 800;
}

.ds-color-card p,
.ds-token-table span,
.ds-type-list p,
.ds-logo-usage p,
.ds-product-card p,
.ds-product-card li,
.ds-form-card label {
  color: #475569;
}

.ds-color-card p,
.ds-token-table span,
.ds-logo-usage p,
.ds-product-card p,
.ds-product-card li {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.ds-token-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ds-token-table div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f8fafc;
}

.ds-type-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.ds-type-list div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.ds-type-list strong {
  color: #0f1729;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.ds-type-list p {
  max-width: 720px;
  margin: 0;
  font-size: 19px;
  line-height: 1.62;
}

.ds-type-list em {
  color: #0073e6;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.ds-type-list code {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 8px;
  color: #005fbe;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 800;
}

.ds-logo-usage {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.ds-logo-usage div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.ds-logo-usage img {
  max-width: min(100%, 360px);
  height: auto;
}

.ds-logo-usage div:last-child img {
  max-width: 126px;
}

.ds-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 26px;
}

.ds-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.ds-button:focus-visible,
.ds-form-card input:focus,
.ds-form-card textarea:focus {
  outline: 3px solid rgba(0, 115, 230, 0.22);
  outline-offset: 2px;
}

.ds-button--primary {
  color: #ffffff;
  background: #0073e6;
}

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

.ds-button--whatsapp {
  color: #ffffff;
  background: #25d366;
}

.ds-button--whatsapp:hover {
  background: #15803d;
}

.ds-button--outline {
  color: #0073e6;
  border-color: #bfdbfe;
  background: #ffffff;
}

.ds-button--outline:hover {
  border-color: #0073e6;
  background: #eef6ff;
}

.ds-button--disabled,
.ds-button--disabled:hover {
  color: #94a3b8;
  background: #f1f5f9;
  cursor: not-allowed;
  transform: none;
}

.ds-component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 28px;
}

.ds-product-card,
.ds-form-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.ds-product-card {
  background: #f8fafc;
}

.ds-product-card h4,
.ds-form-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;
}

.ds-product-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.ds-product-card a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: #0073e6;
  font-size: 14px;
  font-weight: 800;
}

.ds-product-card--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 191, 0, 0.2), transparent 36%),
    #020617;
}

.ds-product-card--dark h4,
.ds-product-card--dark p,
.ds-product-card--dark a {
  color: #ffffff;
}

.ds-chip {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #005fbe;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ds-chip--light {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.ds-form-card label {
  margin: 0 0 -8px;
  font-size: 13px;
  font-weight: 800;
}

.ds-form-card input,
.ds-form-card textarea {
  width: 100%;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  color: #0f1729;
  background: #ffffff;
  font: inherit;
}

.ds-form-card input {
  min-height: 46px;
  padding: 0 12px;
}

.ds-form-card textarea {
  min-height: 98px;
  padding: 12px;
  resize: vertical;
}

.ds-code {
  max-width: 100%;
  margin: 18px 0 0;
  padding: 20px;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  color: #dbeafe;
  background: #020617;
  overflow-x: auto;
  line-height: 1.6;
}

.ds-code code {
  color: inherit;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .ds-button {
    transition: none;
  }

  .ds-button:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .brand-admin-layout {
    grid-template-columns: 1fr;
  }

  .brand-admin-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #e1e7ef;
  }

  .brand-admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-admin-source {
    margin-top: 0;
  }

  .brand-admin-grid,
  .brand-admin-grid--two,
  .brand-admin-table,
  .brand-admin-compare,
  .ds-color-grid,
  .ds-token-table,
  .ds-logo-usage,
  .ds-component-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-admin-doc {
    width: calc(100% - 28px);
    padding: 28px 0 64px;
  }

  .brand-admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .ds-button-row {
    flex-direction: column;
  }

  .ds-button {
    width: 100%;
  }

  .ds-type-list strong {
    font-size: 28px;
  }
}

/* HiperSteel front design system */
:root {
  --hs-blue-600: #0073e6;
  --hs-blue-700: #005fbe;
  --hs-green-500: #25d366;
  --hs-green-700: #15803d;
  --hs-amber-400: #ffbf00;
  --hs-navy-950: #020617;
  --hs-ink-900: #0f1729;
  --hs-slate-700: #334155;
  --hs-slate-600: #475569;
  --hs-slate-500: #64748b;
  --hs-line: #e1e7ef;
  --hs-line-strong: #cbd7e5;
  --hs-ice: #f6f9fd;
  --hs-soft: #f1f5f9;
  --hs-white: #ffffff;
  --hs-radius-sm: 8px;
  --hs-radius-md: 12px;
  --hs-radius-lg: 16px;
  --hs-radius-pill: 999px;
  --hs-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --hs-shadow-lift: 0 20px 52px rgba(15, 23, 42, 0.13);
  --hs-shadow-dark: 0 24px 70px rgba(2, 6, 23, 0.28);
}

body:not(.brand-admin-page) {
  color: var(--hs-ink-900);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f5f9fd 100%);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:not(.brand-admin-page)::selection {
  color: var(--hs-white);
  background: var(--hs-blue-600);
}

body:not(.brand-admin-page) .page-transition-frame,
body.reference-page .page-transition-frame {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f5f9fd 100%);
}

body:not(.brand-admin-page) :focus-visible {
  outline: 3px solid rgba(0, 115, 230, 0.26);
  outline-offset: 3px;
}

body:not(.brand-admin-page) h1,
body:not(.brand-admin-page) h2,
body:not(.brand-admin-page) h3,
body:not(.brand-admin-page) p {
  letter-spacing: 0;
}

body:not(.brand-admin-page) h1,
body:not(.brand-admin-page) h2,
body:not(.brand-admin-page) h3 {
  color: var(--hs-ink-900);
  font-family: inherit;
  font-weight: 800;
  text-wrap: balance;
}

body:not(.brand-admin-page) p,
body:not(.brand-admin-page) li,
body:not(.brand-admin-page) td {
  color: var(--hs-slate-600);
}

body:not(.brand-admin-page) img {
  background: var(--hs-soft);
}

.reference-page {
  --reference-primary: var(--hs-blue-600);
  --reference-secondary: var(--hs-green-500);
  --reference-accent: var(--hs-amber-400);
  --reference-ink: var(--hs-ink-900);
  --reference-muted: var(--hs-slate-600);
  --reference-soft: var(--hs-soft);
  --reference-line: var(--hs-line);
  --reference-footer: var(--hs-navy-950);
  --reference-white: var(--hs-white);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f5f9fd 100%);
}

.shell,
.reference-shell {
  width: min(1280px, calc(100% - 48px));
}

.reference-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(225, 231, 239, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
}

.contact-bar {
  color: var(--hs-white);
  background: linear-gradient(90deg, var(--hs-navy-950), #06213f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-bar__inner {
  min-height: 38px;
}

.contact-bar__inner span,
.contact-bar a {
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
}

.contact-bar a:hover {
  color: var(--hs-white);
}

.reference-nav-wrap {
  top: 0;
  padding: 10px 0;
  background: transparent;
}

.main-nav,
.reference-header .reference-nav-wrap {
  background: transparent;
  border: 0;
}

.main-nav__inner,
.reference-header .reference-nav {
  min-height: 76px;
  gap: 28px;
}

.brand,
.reference-brand {
  width: clamp(218px, 24vw, 318px);
  min-height: 0;
}

.brand img,
.reference-brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 112;
  object-fit: contain;
  background: transparent;
}

.brand__wordmark {
  display: none;
}

.nav-menu,
.reference-menu {
  gap: 4px;
}

.nav-menu a,
.reference-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--hs-radius-pill);
  color: var(--hs-slate-700);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-menu a:not(.nav-cta)::after,
.reference-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.reference-menu a:hover,
.reference-menu a[aria-current="page"] {
  color: var(--hs-blue-700);
  background: rgba(0, 115, 230, 0.08);
}

.nav-cta,
.reference-menu .nav-cta {
  color: var(--hs-white);
  background: var(--hs-blue-600);
  box-shadow: 0 10px 24px rgba(0, 115, 230, 0.22);
}

.nav-cta:hover,
.reference-menu .nav-cta:hover {
  color: var(--hs-white);
  background: var(--hs-blue-700);
  transform: translateY(-1px);
}

.reference-page .nav-toggle,
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--hs-radius-pill);
  border-color: var(--hs-line);
  background: var(--hs-white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.reference-page .nav-toggle span:not(.sr-only),
.nav-toggle span:not(.sr-only) {
  background: var(--hs-ink-900);
}

.reference-hero,
.page-hero,
.reference-service-hero,
.reference-inner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.reference-hero {
  min-height: min(740px, calc(100svh - 96px));
  background:
    linear-gradient(135deg, var(--hs-navy-950), #06213f 62%, #083466);
}

.page-hero,
.reference-service-hero {
  min-height: min(600px, calc(100svh - 118px));
  background:
    linear-gradient(135deg, var(--hs-navy-950), #072642 62%, #083466);
}

.reference-inner-hero {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.reference-hero__shade,
.reference-service-hero__shade,
.page-hero__veil {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.66) 48%, rgba(2, 6, 23, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 115, 230, 0.16), rgba(2, 6, 23, 0.24));
}

.reference-hero::after,
.page-hero::after,
.reference-service-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(248, 251, 255, 0.92));
}

.reference-hero__top,
.page-hero__content,
.reference-service-hero__content {
  position: relative;
  z-index: 2;
}

.reference-hero__top {
  min-height: inherit;
  padding: clamp(92px, 11vw, 142px) 0 clamp(72px, 9vw, 112px);
}

.reference-hero__copy {
  max-width: 900px;
}

.reference-page h1,
.page-hero h1,
.reference-service-hero h1,
.reference-inner-hero h1 {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.04;
  font-weight: 800;
}

.reference-hero h1,
.page-hero h1,
.reference-service-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--hs-white);
}

.reference-inner-hero h1 {
  color: var(--hs-ink-900);
}

.reference-hero__lead,
.page-hero__content p:last-child,
.reference-service-hero p,
.reference-inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
}

.reference-inner-hero p {
  color: var(--hs-slate-600);
}

.reference-anniversary {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--hs-radius-lg);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.reference-feature-list span {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--hs-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.reference-feature-list span::before {
  background: var(--hs-amber-400);
}

.reference-button,
.button,
.reference-whatsapp-button {
  min-height: 48px;
  border-radius: var(--hs-radius-pill);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.reference-button:hover,
.button:hover,
.reference-whatsapp-button:hover {
  transform: translateY(-1px);
}

.reference-button--primary,
.button--primary {
  color: var(--hs-white);
  border-color: var(--hs-blue-600);
  background: var(--hs-blue-600);
  box-shadow: 0 12px 28px rgba(0, 115, 230, 0.24);
  animation: none;
}

.reference-button--primary:hover,
.button--primary:hover {
  border-color: var(--hs-blue-700);
  background: var(--hs-blue-700);
  box-shadow: 0 16px 34px rgba(0, 95, 190, 0.25);
}

.reference-button--secondary,
.reference-whatsapp-button {
  color: var(--hs-white);
  border-color: var(--hs-green-500);
  background: var(--hs-green-500);
}

.reference-button--secondary:hover,
.reference-whatsapp-button:hover {
  background: var(--hs-green-700);
}

.reference-button--light {
  color: var(--hs-blue-700);
  border-color: var(--hs-white);
  background: var(--hs-white);
}

.reference-button--ghost,
.reference-button--outline,
.button--ghost {
  color: var(--hs-white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.reference-inner-cta .reference-button--outline,
.reference-section .reference-button--outline {
  color: var(--hs-blue-700);
  border-color: rgba(0, 115, 230, 0.24);
  background: rgba(0, 115, 230, 0.06);
}

.reference-section,
.section {
  position: relative;
  background: transparent;
}

.reference-section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.reference-section--muted,
.section-muted,
.reference-products-section,
.reference-contact-section,
.reference-services-gallery-section,
.reference-service-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 245, 249, 0.72));
}

.reference-testimonials {
  background: transparent;
}

.reference-about {
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.reference-about__copy {
  max-width: 680px;
}

.reference-about__copy h2,
.reference-heading h2,
.reference-heading--split h2,
.reference-inner-cta h2,
.reference-cta h2,
.section-heading h2,
.cta-panel h2,
.quote-band h2 {
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1.1;
  font-weight: 800;
}

.reference-heading p,
.reference-about__copy p,
.section-heading p,
.reference-inner-cta p {
  color: var(--hs-slate-600);
  font-size: 17px;
  line-height: 1.65;
}

.reference-kicker,
.eyebrow {
  color: var(--hs-blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.reference-kicker--light,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.reference-stat-card,
.reference-testimonial-card,
.reference-product-card,
.reference-capability-card,
.reference-process-card,
.reference-service-gallery-card,
.reference-material-card,
.reference-form-card,
.reference-whatsapp-card,
.reference-location-card,
.values-grid article,
.step-card,
.catalog-card,
.sector-panel,
.timeline-item,
.table-wrap,
.cta-panel {
  border: 1px solid var(--hs-line);
  border-radius: var(--hs-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hs-shadow-soft);
}

.reference-stat-card:hover,
.reference-testimonial-card:hover,
.reference-product-card:hover,
.reference-capability-card:hover,
.reference-process-card:hover,
.reference-service-gallery-card:hover,
.reference-material-card:hover,
.values-grid article:hover,
.step-card:hover,
.catalog-card:hover,
.sector-panel:hover,
.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--hs-shadow-lift);
}

.reference-stat-card strong,
.values-grid span,
.step-card span,
.sector-panel > span,
.timeline-item span {
  color: var(--hs-blue-600);
}

.reference-iconbox {
  color: var(--hs-blue-600);
  background: rgba(0, 115, 230, 0.09);
}

.reference-product-details summary,
.reference-product-jump,
.reference-service-gallery-card a,
.reference-material-card a {
  color: var(--hs-blue-700);
}

.reference-product-jump,
.reference-service-tabs a,
.reference-material-tabs a {
  min-height: 40px;
  border-radius: var(--hs-radius-pill);
  font-weight: 800;
}

.reference-service-tabs a,
.reference-material-tabs a {
  background: rgba(255, 255, 255, 0.9);
}

.reference-service-tabs a:hover,
.reference-material-tabs a:hover,
.reference-product-jump:hover {
  border-color: rgba(0, 115, 230, 0.32);
  color: var(--hs-blue-700);
  background: rgba(0, 115, 230, 0.08);
}

.reference-service-visual {
  border: 1px solid rgba(0, 115, 230, 0.16);
  border-radius: var(--hs-radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 115, 230, 0.11), rgba(37, 211, 102, 0.09));
}

.reference-service-visual--image {
  box-shadow: var(--hs-shadow-soft);
}

.reference-form-card,
.reference-whatsapp-card,
.reference-hours-card {
  border-radius: var(--hs-radius-lg);
}

.reference-contact-form input,
.reference-contact-form textarea,
.catalog-search input {
  min-height: 48px;
  border-color: var(--hs-line-strong);
  border-radius: var(--hs-radius-sm);
  background: var(--hs-white);
  color: var(--hs-ink-900);
  font-size: 16px;
}

.reference-contact-form textarea {
  min-height: 128px;
}

.reference-contact-form label,
.catalog-search label {
  color: var(--hs-ink-900);
  font-weight: 800;
}

.reference-contact-form input:focus,
.reference-contact-form textarea:focus,
.catalog-search input:focus {
  border-color: var(--hs-blue-600);
  box-shadow: 0 0 0 4px rgba(0, 115, 230, 0.12);
}

.reference-cta,
.quote-band {
  color: var(--hs-white);
  background:
    linear-gradient(135deg, var(--hs-blue-700) 0%, #064b8f 48%, var(--hs-navy-950) 100%);
}

.reference-cta h2,
.reference-cta p,
.quote-band h2,
.quote-band p,
.quote-band .eyebrow {
  color: var(--hs-white);
}

.reference-cta__inner,
.quote-band__inner {
  position: relative;
}

.reference-footer,
.site-footer {
  color: var(--hs-white);
  background:
    linear-gradient(180deg, var(--hs-navy-950), #061827);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reference-footer h2,
.reference-footer p,
.reference-footer a,
.reference-footer span,
.site-footer strong,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.reference-footer h2,
.site-footer strong {
  color: var(--hs-white);
}

.reference-footer a:hover,
.site-footer a:hover {
  color: var(--hs-white);
}

.whatsapp-float,
.reference-whatsapp {
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--hs-green-500);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.whatsapp-float:hover,
.reference-whatsapp:hover {
  background: var(--hs-green-700);
}

.catalog-table th {
  color: var(--hs-white);
  background: var(--hs-navy-950);
}

.catalog-table td:first-child {
  color: var(--hs-ink-900);
  font-weight: 800;
}

.catalog-table tbody tr:nth-child(even) {
  background: rgba(241, 245, 249, 0.7);
}

.catalog-table th,
.catalog-table td {
  border-color: var(--hs-line);
}

@media (max-width: 940px) {
  .shell,
  .reference-shell {
    width: min(1280px, calc(100% - 32px));
  }

  .main-nav__inner,
  .reference-header .reference-nav {
    justify-content: space-between;
    min-height: 72px;
  }

  .brand,
  .reference-brand {
    width: min(230px, 62vw);
  }

  .nav-menu,
  .reference-menu {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--hs-shadow-lift);
  }

  .nav-menu.is-open,
  .reference-menu.is-open {
    display: grid;
  }

  .nav-menu a,
  .reference-menu a {
    justify-content: center;
    min-height: 48px;
    color: var(--hs-ink-900);
  }

  .nav-cta,
  .reference-menu .nav-cta {
    color: var(--hs-white);
  }
}

@media (max-width: 640px) {
  .shell,
  .reference-shell {
    width: min(1280px, calc(100% - 28px));
  }

  .reference-hero,
  .page-hero,
  .reference-service-hero {
    min-height: auto;
  }

  .reference-hero__top,
  .page-hero__content,
  .reference-service-hero__content,
  .reference-inner-hero__content {
    padding: 64px 0;
  }

  .reference-page h1,
  .page-hero h1,
  .reference-service-hero h1,
  .reference-inner-hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .reference-hero__lead,
  .page-hero__content p:last-child,
  .reference-service-hero p,
  .reference-inner-hero p {
    max-width: 100%;
    font-size: 17px;
  }

  .reference-button,
  .button {
    width: 100%;
  }

  .reference-about__copy h2,
  .reference-heading h2,
  .reference-heading--split h2,
  .reference-inner-cta h2,
  .reference-cta h2,
  .section-heading h2,
  .cta-panel h2,
  .quote-band h2 {
    font-size: 30px;
  }

  .reference-stat-card,
  .reference-testimonial-card,
  .reference-product-card,
  .reference-form-card,
  .values-grid article,
  .step-card,
  .sector-panel,
  .timeline-item,
  .cta-panel {
    border-radius: var(--hs-radius-md);
  }
}

/* Front final specificity fixes */
body:not(.brand-admin-page) .reference-hero h1,
body:not(.brand-admin-page) .page-hero h1,
body:not(.brand-admin-page) .reference-service-hero h1,
body:not(.brand-admin-page) .reference-cta h2,
body:not(.brand-admin-page) .quote-band h2 {
  color: var(--hs-white);
}

body:not(.brand-admin-page) .reference-hero__lead,
body:not(.brand-admin-page) .page-hero__content p:last-child,
body:not(.brand-admin-page) .reference-service-hero p,
body:not(.brand-admin-page) .reference-cta p,
body:not(.brand-admin-page) .quote-band p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 940px) {
  .reference-header .reference-nav,
  .main-nav__inner {
    width: 100%;
    position: relative;
  }

  .reference-page .reference-nav__toggle,
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid #bfdbfe;
    border-radius: var(--hs-radius-pill);
    background: #eef6ff;
    box-shadow: 0 10px 24px rgba(0, 115, 230, 0.12);
    transform: translateY(-50%);
  }

  .reference-page .nav-toggle span:not(.sr-only),
  .nav-toggle span:not(.sr-only) {
    background: var(--hs-ink-900);
  }
}

@media (max-width: 640px) {
  .reference-header .reference-nav,
  .main-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0 12px;
  }

  .reference-page .reference-nav__toggle,
  .nav-toggle {
    display: none !important;
  }

  .reference-menu,
  .nav-menu {
    position: static !important;
    display: flex !important;
    width: 100%;
    gap: 8px;
    padding: 0 0 3px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    justify-content: flex-start;
    opacity: 1;
    overflow-x: auto;
    pointer-events: auto;
    scrollbar-width: none;
    transform: none;
    visibility: visible !important;
  }

  .reference-menu::-webkit-scrollbar,
  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .reference-menu a,
  .nav-menu a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(0, 115, 230, 0.12);
    background: rgba(255, 255, 255, 0.84);
    font-size: 13px;
  }

  .reference-menu a[aria-current="page"],
  .nav-menu a[aria-current="page"] {
    border-color: rgba(0, 115, 230, 0.2);
    background: rgba(0, 115, 230, 0.1);
  }

  .reference-menu .nav-cta,
  .nav-menu .nav-cta {
    color: var(--hs-white);
    background: var(--hs-blue-600);
  }
}

/* Blue, white and gold scrollbar finish */
html {
  scrollbar-color: var(--hs-blue-600) var(--hs-ice-100);
  scrollbar-width: thin;
}

body {
  scrollbar-gutter: stable;
}

*::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}

*::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(0, 115, 230, 0.08), rgba(255, 214, 77, 0.08)),
    var(--hs-ice-100);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--hs-ice-100);
  border-radius: var(--hs-radius-pill);
  background:
    linear-gradient(180deg, #0073e6 0%, #4aa3ff 28%, #ffffff 50%, #ffd64d 74%, #0073e6 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 75, 150, 0.18);
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #005bbb 0%, #2f91f2 28%, #ffffff 50%, #ffc400 74%, #005bbb 100%);
}

/* Photographic inner-page heroes */
.reference-page .reference-products-hero,
.reference-page .reference-contact-hero {
  min-height: clamp(360px, 46vw, 560px);
  display: flex;
  align-items: center;
  padding: clamp(76px, 9vw, 124px) 0;
  background-position: center;
  background-size: cover;
}

.reference-page .reference-products-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.68) 48%, rgba(0, 45, 91, 0.28)),
    linear-gradient(180deg, rgba(0, 115, 230, 0.16), rgba(2, 6, 23, 0.34)),
    url("hero-produtos.jpg");
}

.reference-page .reference-contact-hero {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7) 52%, rgba(0, 45, 91, 0.32)),
    linear-gradient(180deg, rgba(0, 115, 230, 0.18), rgba(2, 6, 23, 0.34)),
    url("hero-contato.jpg");
}

.reference-page .reference-products-hero .reference-inner-hero__content,
.reference-page .reference-contact-hero .reference-inner-hero__content {
  max-width: 900px;
  text-align: left;
}

.reference-page .reference-products-hero h1,
.reference-page .reference-contact-hero h1 {
  max-width: 860px;
  margin-right: 0;
  margin-left: 0;
  color: var(--hs-white);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.reference-page .reference-products-hero p,
.reference-page .reference-contact-hero p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 720px) {
  .reference-page .reference-products-hero,
  .reference-page .reference-contact-hero {
    min-height: 380px;
    padding: 72px 0;
  }

  .reference-page .reference-products-hero .reference-inner-hero__content,
  .reference-page .reference-contact-hero .reference-inner-hero__content {
    text-align: center;
  }

  .reference-page .reference-products-hero h1,
  .reference-page .reference-contact-hero h1,
  .reference-page .reference-products-hero p,
  .reference-page .reference-contact-hero p {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Always-visible header menu */
.reference-header .reference-nav,
.main-nav__inner {
  position: relative;
  z-index: 20;
  display: flex !important;
  width: min(1280px, calc(100% - 32px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
  padding: 8px 0;
}

.reference-brand,
.brand {
  width: clamp(170px, 30vw, 308px) !important;
  min-width: 0;
  min-height: 0;
}

.reference-brand img,
.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.reference-page .reference-nav__toggle,
.nav-toggle {
  display: none !important;
}

.reference-menu,
.nav-menu {
  position: static !important;
  z-index: 21;
  display: flex !important;
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 1.6vw, 24px);
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  overflow-x: auto;
  pointer-events: auto !important;
  scrollbar-width: none;
  transform: none !important;
  visibility: visible !important;
}

.reference-menu a,
.nav-menu a,
.reference-brand,
.brand {
  position: relative;
  z-index: 22;
  pointer-events: auto !important;
}

.reference-menu::-webkit-scrollbar,
.nav-menu::-webkit-scrollbar {
  display: none;
}

.reference-menu a,
.nav-menu a {
  flex: 0 0 auto;
  min-height: 42px !important;
  padding: 0 clamp(10px, 1.35vw, 18px) !important;
  border: 0 !important;
  border-radius: var(--hs-radius-pill);
  color: var(--hs-ink-900);
  background: transparent !important;
  font-size: clamp(13px, 1.2vw, 16px) !important;
  font-weight: 800;
  line-height: 1;
}

.reference-menu a:hover,
.reference-menu a[aria-current="page"],
.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--hs-blue-700);
  background: rgba(0, 115, 230, 0.1) !important;
}

@media (max-width: 560px) {
  .reference-header .reference-nav,
  .main-nav__inner {
    width: min(1280px, calc(100% - 20px));
    gap: 8px;
  }

  .reference-brand,
  .brand {
    width: clamp(118px, 33vw, 160px) !important;
  }

  .reference-menu,
  .nav-menu {
    gap: 4px;
  }

  .reference-menu a,
  .nav-menu a {
    min-height: 34px !important;
    padding: 0 7px !important;
    font-size: clamp(11px, 3vw, 12px) !important;
  }
}
