:root {
  --ink: #10141a;
  --muted: #68717d;
  --paper: #fff;
  --soft: #f4f6f9;
  --line: #dfe5ed;
  --red: #cd1f3d;
  --orange: #ff6b00;
  --blue: #00a7d8;
  --dark: #071019;
  --navy: #08204b;
  --page: 1320px;
  --pad: clamp(18px, 4vw, 46px);
  --header: 86px;
  --font-display: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
  --type-caption: 12px;
  --type-small: 14px;
  --type-body: 16px;
  --type-lead: 18px;
  --type-card: 20px;
  --type-section: clamp(32px, 3.2vw, 48px);
  --type-page: clamp(42px, 4.6vw, 64px);
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea {
  max-width: 100%;
  font: inherit;
}
button { cursor: pointer; }

.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px var(--pad) 0;
  background: rgba(255,255,255,.96);
  border-bottom: 0;
}
.header-inner {
  position: relative;
  max-width: min(1500px, 100%);
  height: 92px;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0 22px 0 0;
  border: 1px solid rgba(218,226,236,.82);
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(9, 20, 35, .12);
}
.brand {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: start;
  width: 134px;
  height: 134px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  clip-path: none;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(91, 0, 15, .2);
}
.brand img {
  width: 134px;
  height: 134px;
  object-fit: contain;
  box-shadow: none;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 22px);
  height: 100%;
}
.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-nav a {
  position: relative;
  min-width: 0;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #182234;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -20px;
  left: 8px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background .2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
  background: transparent;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  background: var(--red);
}
.header-icon,
.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}
.header-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-chevron svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-actions {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 20px);
}
.header-search-icon {
  width: 54px;
  height: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #dce4ee;
  border-radius: 50%;
  background: #fff;
  color: #030b16;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(6, 20, 35, .08);
}
.header-search-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-search-icon:hover { color: var(--red); }
.header-help {
  display: grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 214px;
  padding-left: 20px;
  border-left: 1px solid #d9e0ea;
  color: #101828;
  line-height: 1.05;
  text-decoration: none;
}
.header-help-icon {
  grid-row: 1 / 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.header-help-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-help-label {
  color: #536171;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.header-help strong {
  color: #06111f;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}
.header-help small {
  color: #6d7683;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.header-help:hover strong { color: var(--red); }
.header-contact-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef1f39 0%, #c91431 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(205, 31, 61, .25);
}
.header-contact-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-contact-button:hover {
  background: linear-gradient(135deg, #ff2d46 0%, #b90e28 100%);
  transform: translateY(-1px);
}
.product-mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 196px;
  right: 126px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(210px, 260px) repeat(3, minmax(150px, 1fr)) minmax(180px, 220px);
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(218,226,236,.9);
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 28px 56px rgba(8, 20, 35, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.has-mega:hover .product-mega-menu,
.has-mega:focus-within .product-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-highlight {
  margin: 0;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff1f3 0%, #fff 100%);
}
.mega-highlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  box-shadow: 0 10px 24px rgba(205,31,61,.12);
}
.mega-highlight-icon svg,
.mega-more svg,
.mega-highlight a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mega-highlight h2 {
  margin: 0 0 10px;
  color: #091322;
  font-size: 18px;
  line-height: 1.2;
}
.mega-highlight p {
  margin: 0 0 18px;
  color: #566170;
  font-size: 14px;
}
.mega-highlight a,
.mega-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: none;
}
.mega-highlight a::after,
.mega-more::after,
.product-mega-menu a::after {
  display: none;
}
.product-mega-menu a {
  border-radius: 0;
  background: transparent;
}
.mega-column {
  padding: 8px 0 6px;
}
.mega-column h3 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mega-column > a {
  display: flex;
  justify-content: flex-start;
  min-height: 34px;
  padding: 0;
  color: #384454;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.mega-column > a:hover {
  color: var(--red);
}
.mega-image {
  margin: 0;
  min-height: 184px;
  overflow: hidden;
  border-radius: 8px;
}
.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-quote {
  min-height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #0d1724;
}

.hero,
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero { min-height: clamp(680px, 82vh, 860px); }
.subpage-hero { min-height: 440px; }
.hero-bg,
.subpage-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg {
  transform: translateX(0);
  transition: transform .68s cubic-bezier(.7, 0, .25, 1);
  will-change: transform;
}
.hero-bg-clone {
  pointer-events: none;
  transition: transform .68s cubic-bezier(.7, 0, .25, 1);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(92deg, rgba(4,10,21,.82) 0%, rgba(4,10,21,.52) 37%, rgba(4,10,21,.08) 67%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.68));
}
.hero::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(108deg, transparent 0 58%, rgba(205,31,61,.44) 58.1% 58.55%, transparent 58.8%),
    linear-gradient(108deg, transparent 0 68%, rgba(0,167,216,.46) 68.1% 68.5%, transparent 68.8%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  bottom: -16vw;
  z-index: 2;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(0,167,216,.18);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--page);
  min-height: clamp(680px, 82vh, 860px);
  display: grid;
  align-items: end;
  margin: 0 auto;
  padding: 90px var(--pad) 82px;
}
.subpage-hero .hero-inner {
  min-height: 440px;
  align-items: center;
  padding: 82px var(--pad);
}
.home-hero-copy {
  max-width: 760px;
  display: grid;
  gap: 18px;
}
.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow,
.subpage-hero .eyebrow { color: #fff; }
.hero h1,
.subpage-hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 5.2vw, 88px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0,0,0,.42), 0 18px 34px rgba(0,0,0,.5);
}
.hero h1 span { display: block; }
.hero h1 span:last-child,
.subpage-hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero p:not(.eyebrow),
.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 0 rgba(0,0,0,.5), 0 10px 18px rgba(0,0,0,.38);
}
.home-hero-distributor-button,
.primary-action,
.text-action {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-hero-distributor-button::after,
.primary-action::after,
.text-action::after { content: ">"; }
.hero-dots {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.hero-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}
.image-slide-hero {
  min-height: clamp(540px, 42vw, 790px);
}
.image-slide-hero .hero-bg {
  object-fit: cover;
  object-position: center;
}
.image-slide-hero .hero-overlay,
.image-slide-hero::before,
.image-slide-hero::after {
  display: none;
}
.image-slide-hero .hero-inner {
  max-width: none;
  min-height: clamp(540px, 42vw, 790px);
  align-items: end;
  padding: 0;
}
.image-slide-hero .home-hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 3vw, 48px);
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  display: block;
}
.image-slide-hero .home-hero-copy > :not(.hero-dots) {
  display: none;
}
.image-slide-hero .hero-dots {
  margin: 0;
  justify-content: center;
}
.image-slide-hero .hero-dots button {
  background: rgba(255,255,255,.55);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.image-slide-hero .hero-dots button.is-active {
  background: #fff;
}

.mobile-home-proof,
.mobile-home-categories {
  display: none;
}

.mobile-home-proof svg,
.mobile-category-card svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-service-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .86fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
  padding: clamp(54px, 6vw, 86px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  background:
    radial-gradient(circle at 82% 20%, rgba(205,31,61,.1), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.seo-service-section > * {
  max-width: 680px;
}
.seo-service-section h2 {
  margin: 8px 0 14px;
  color: #071019;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 950;
}
.seo-service-section p:not(.eyebrow) {
  margin: 0;
  color: #4e5967;
  font-size: 16px;
}
.seo-keyword-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-keyword-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(205,31,61,.22);
  border-radius: 8px;
  background: #fff;
  color: #10141a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(12,24,38,.08);
}
.seo-keyword-grid a::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
}

.category-section,
.process-section,
.interest-section,
.page-section,
.catalog-section {
  padding: 70px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
}
.category-section,
.process-section,
.catalog-section { background: var(--soft); }
.home-cover-section {
  padding-top: 84px;
  padding-bottom: 84px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.category-copy,
.section-heading {
  max-width: var(--page);
  margin: 0 auto 28px;
}
.category-copy h2,
.section-heading h2,
.page-section h2 {
  max-width: 880px;
  margin: 0;
  color: #0b1118;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.category-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.page-section p {
  max-width: 760px;
  color: #536170;
  font-size: 15px;
}
.category-grid,
.info-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}
.process-grid,
.interest-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}
body[data-page="blog"] .interest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(12,24,38,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(12,24,38,.08);
}
.category-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -11px;
  height: 16px;
  z-index: -1;
  border-radius: 0 0 8px 8px;
  background: #6d2b8b;
}
.category-card figure {
  height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #ecf2f7;
}
.category-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card-copy {
  flex: 1;
  display: grid;
  gap: 12px;
  padding: 22px;
}
.category-card h3,
.process-grid h3,
.info-grid h3,
.article-card h3 {
  margin: 0;
  color: #091321;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}
.category-card p,
.process-grid p,
.info-grid p,
.article-card p {
  margin: 0;
  color: #4f5f70;
}
.category-card-action {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  align-self: end;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.home-cover-section .category-grid {
  gap: 24px;
}
.home-cover-section .category-card {
  min-height: 430px;
  box-shadow: 0 24px 54px rgba(12,24,38,.10);
}
.home-cover-section .category-card::after {
  display: none;
}
.home-cover-section .category-card figure {
  height: 250px;
  background: #f4f6f8;
}
.home-cover-section .category-card-action {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--red);
}
.home-cover-section .category-card-action::after {
  content: "→";
  margin-left: 9px;
}

.home-lines-section {
  padding: clamp(58px, 6vw, 84px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  background:
    radial-gradient(circle at 94% 8%, rgba(213,25,49,.08), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}
.home-lines-heading {
  max-width: var(--page);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 30px;
}
.home-lines-heading > div {
  max-width: 820px;
}
.home-lines-heading h2 {
  max-width: 850px;
  margin: 0;
  color: #071323;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.02;
  font-weight: 900;
}
.home-lines-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: #465568;
  line-height: 1.65;
}
.home-lines-all {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(213,25,49,.24);
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(12,24,38,.06);
}
.home-lines-all::after {
  content: ">";
  margin-left: 10px;
}
.home-lines-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}
.home-line-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(12,24,38,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(12,24,38,.10);
}
.home-line-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), #ff6a00);
}
.home-line-card figure {
  height: 310px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,247,251,.98)),
    radial-gradient(circle at 72% 18%, rgba(213,25,49,.08), transparent 35%);
}
.home-line-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s ease;
}
.home-line-card:hover figure img {
  transform: scale(1.04);
}
.home-line-copy {
  min-height: 205px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 24px 26px 28px;
}
.home-line-copy span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.home-line-copy h3 {
  margin: 0;
  color: #081323;
  font-size: 23px;
  line-height: 1.06;
  font-weight: 900;
}
.home-line-copy p {
  margin: 0;
  color: #4f5f70;
  line-height: 1.55;
}
.home-line-copy a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.home-line-copy a::after {
  content: ">";
  margin-left: 9px;
}

.fire-process-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(420px, 620px);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  padding: clamp(74px, 7vw, 106px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  color: #fff;
  background:
    radial-gradient(circle at 18% 45%, rgba(44, 191, 255, .22), transparent 32%),
    radial-gradient(circle at 76% 12%, rgba(237, 38, 49, .18), transparent 26%),
    linear-gradient(135deg, #07336a 0%, #074e93 46%, #063b78 100%);
}
.fire-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.06) 35% 39%, transparent 39% 100%),
    radial-gradient(circle at 0 100%, rgba(255,255,255,.08), transparent 30%);
  pointer-events: none;
}
.fire-process-section > * {
  position: relative;
  z-index: 1;
}
.fire-process-map {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
}
.fire-process-map::before {
  content: "";
  position: absolute;
  inset: 94px 128px;
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 50%;
}
.fire-process-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 190px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  transform: translate(-50%, -50%);
  border-radius: 42% 58% 54% 46%;
  background: linear-gradient(135deg, #f2b43a, #c9962d);
  box-shadow: 0 24px 42px rgba(0,0,0,.22);
}
.fire-process-center strong {
  color: rgba(255,255,255,.72);
  font-size: 58px;
  line-height: .9;
  font-weight: 900;
}
.fire-process-center span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.fire-node {
  position: absolute;
  width: 150px;
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
}
.fire-node::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.26);
}
.fire-node span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffcf5b;
  color: #12304c;
  font-size: 12px;
  font-weight: 900;
}
.fire-node strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}
.fire-node-1 { left: 42%; top: 2%; }
.fire-node-2 { right: 7%; top: 17%; }
.fire-node-3 { right: 4%; top: 43%; }
.fire-node-4 { right: 0; bottom: 15%; }
.fire-node-5 { left: 36%; bottom: 0; }
.fire-node-6 { left: 11%; bottom: 13%; }
.fire-node-7 { left: 3%; top: 39%; }
.fire-node-8 { left: 14%; top: 13%; }
.fire-node-1::after { left: -34px; top: 50%; transform: rotate(20deg); }
.fire-node-2::after { left: -33px; top: 62%; transform: rotate(38deg); }
.fire-node-3::after { left: -36px; top: 49%; transform: rotate(0deg); }
.fire-node-4::after { left: -30px; top: 25%; transform: rotate(-38deg); }
.fire-node-5::after { left: 50%; top: -14px; transform: translateX(-50%) rotate(90deg); }
.fire-node-6::after { right: -34px; top: 28%; transform: rotate(32deg); }
.fire-node-7::after { right: -35px; top: 50%; }
.fire-node-8::after { right: -34px; top: 62%; transform: rotate(-34deg); }
.fire-process-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}
.fire-process-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.65;
}
.fire-process-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.fire-process-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.94);
  line-height: 1.45;
}
.fire-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffcf5b;
  box-shadow: 0 0 0 4px rgba(255,207,91,.16);
}
.fire-process-list strong {
  color: #ffcf5b;
}

.red-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 54px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  color: #fff;
  background: var(--red);
}
.red-band h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}
.red-band a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.process-grid article,
.info-grid article,
.article-card,
.contact-card,
.catalog-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12,24,38,.06);
}
.process-grid article,
.info-grid article { padding: 26px; }
.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.interest-section { background: #fff; }
.interest-card,
.article-card {
  overflow: hidden;
  text-decoration: none;
}
.interest-card img,
.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #eef3f8;
}
.interest-card img {
  object-fit: contain;
  background: #fff;
}
.interest-card span,
.article-card h3,
.article-card p {
  display: block;
  padding: 18px 20px;
}
.article-card p { padding-top: 0; }

.product-category-hero {
  overflow: hidden;
  background: #f6f7f9;
  border-bottom: 1px solid rgba(9,19,33,.06);
}
.product-category-hero img {
  width: 100%;
  min-height: clamp(260px, 27vw, 390px);
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-summary-section {
  padding: 56px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) 78px;
  background: #fff;
}
.product-summary-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 0 auto;
}
.product-summary-card {
  overflow: hidden;
  border: 1px solid rgba(9,19,33,.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(12,24,38,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(12,24,38,.14);
}
.product-summary-card figure {
  height: 238px;
  display: block;
  margin: 0;
  padding: 0;
  background: #f3f5f8;
}
.product-summary-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-summary-card > div {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 30px 26px;
  background: #fff;
}
.product-summary-card h3 {
  margin: 0;
  color: #091321;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
}
.product-summary-card p {
  margin: 0;
  color: #2d3a49;
  font-size: 15px;
  line-height: 1.55;
}
.product-summary-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  align-self: end;
  padding: 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}
.product-summary-card a::after {
  content: "â†’";
  margin-left: 8px;
}

.split-layout,
.contact-layout {
  max-width: var(--page);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(520px, 1.05fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  margin: 0 auto;
}
.split-layout > div,
.split-layout figure,
.contact-card,
.contact-form {
  min-width: 0;
}
.split-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.split-layout figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.empresa-hero.subpage-hero,
.empresa-hero.subpage-hero .hero-inner {
  min-height: clamp(420px, 34vw, 540px);
}
.empresa-hero.subpage-hero > img {
  object-position: center right;
}
.empresa-hero.subpage-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4,8,14,.96) 0%, rgba(4,8,14,.88) 33%, rgba(4,8,14,.42) 68%, rgba(4,8,14,.16) 100%),
    radial-gradient(circle at 82% 42%, rgba(209,22,48,.28), transparent 34%);
}
.empresa-hero.subpage-hero h1 em { color: var(--red); }
.empresa-hero.subpage-hero p:not(.eyebrow) {
  max-width: 580px;
  font-weight: 800;
}
.empresa-intro-section {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(540px, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 7vw, 96px) max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) 38px;
  background:
    radial-gradient(circle at 96% 98%, rgba(213,25,49,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}
.empresa-intro-copy {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.empresa-intro-copy h2 {
  max-width: 660px;
  margin: 0;
  color: #071323;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}
.empresa-intro-copy h2 em {
  color: var(--red);
  font-style: normal;
}
.empresa-intro-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: #334254;
  font-size: 16px;
  line-height: 1.7;
}
.empresa-action {
  margin-top: 8px;
  background: var(--red);
}
.empresa-intro-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9,19,33,.18);
}
.empresa-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 60%, rgba(213,25,49,.22) 60.2% 64%, transparent 64.2%),
    linear-gradient(0deg, rgba(4,8,14,.24), transparent 52%);
  pointer-events: none;
}
.empresa-intro-media img {
  width: 100%;
  height: clamp(390px, 33vw, 470px);
  object-fit: cover;
  object-position: center;
}
.empresa-values-section {
  padding: 18px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad))) clamp(64px, 7vw, 90px);
  background: linear-gradient(180deg, #fbfcfe 0%, #f2f5f9 100%);
}
.empresa-values-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.empresa-values-grid article {
  min-width: 0;
  min-height: 164px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(12,24,38,.08);
}
.value-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f3;
}
.value-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.empresa-values-grid h3 {
  margin: 0 0 10px;
  color: #091321;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}
.empresa-values-grid p {
  margin: 0;
  color: #4f5f70;
  line-height: 1.55;
}
.about-solution-section,
.about-features-section,
.about-benefits-section,
.about-modules-section {
  padding-left: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
}
.about-solution-section {
  display: grid;
  grid-template-columns: minmax(420px, .98fr) minmax(460px, 1.02fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: stretch;
  padding-top: clamp(66px, 7vw, 104px);
  padding-bottom: clamp(58px, 6vw, 90px);
  background:
    radial-gradient(circle at 8% 10%, rgba(11,95,170,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}
.about-solution-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 18px;
}
.about-solution-copy h2,
.about-benefits-copy h2,
.about-modules-section .section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #071323;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}
.about-solution-copy p:not(.eyebrow),
.about-benefits-copy > p,
.about-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #334254;
  font-size: 17px;
  line-height: 1.72;
}
.about-action {
  width: fit-content;
  margin-top: 10px;
  background: linear-gradient(135deg, #e91c35, #c90f28);
}
.about-solution-panel {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(9,35,68,.96), rgba(10,87,154,.92)),
    linear-gradient(180deg, #0d4b87, #082a4d);
  box-shadow: 0 28px 70px rgba(12, 40, 78, .18);
  overflow: hidden;
}
.about-solution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 56%, rgba(255,255,255,.08) 56.2% 62%, transparent 62.3%),
    radial-gradient(circle at 92% 14%, rgba(255,255,255,.14), transparent 26%);
  pointer-events: none;
}
.about-solution-panel article {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
}
.about-solution-panel span,
.about-modules-grid span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.about-solution-panel strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}
.about-solution-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.about-features-section {
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(64px, 7vw, 96px);
  background: #fff;
}
.about-heading {
  max-width: var(--page);
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.about-heading h2 {
  max-width: 820px;
}
.about-features-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-feature-card {
  min-width: 0;
  min-height: 254px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 18px 45px rgba(13,36,62,.08);
}
.about-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0d63a8;
  background: #eaf5ff;
}
.about-feature-card:nth-child(even) .about-feature-icon {
  color: var(--red);
  background: #fff0f3;
}
.about-feature-icon svg,
.about-benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.about-feature-card h3 {
  margin: 0;
  color: #071323;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}
.about-feature-card p {
  margin: 0;
  color: #4e5f70;
  font-size: 15.5px;
  line-height: 1.62;
}
.about-benefits-section {
  display: grid;
  grid-template-columns: minmax(410px, .92fr) minmax(520px, 1.08fr);
  gap: clamp(34px, 5.6vw, 82px);
  align-items: center;
  padding-top: clamp(64px, 7vw, 94px);
  padding-bottom: clamp(64px, 7vw, 94px);
  background:
    linear-gradient(90deg, #07111d 0%, #0a1f35 48%, #f6f8fb 48.1%, #fff 100%);
}
.about-benefits-copy {
  min-width: 0;
  color: #fff;
}
.about-benefits-copy .eyebrow {
  color: #ff4058;
}
.about-benefits-copy h2 {
  color: #fff;
}
.about-benefits-copy > p {
  color: rgba(255,255,255,.82);
}
.about-benefits-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.about-benefits-list li {
  position: relative;
  min-height: 54px;
  padding-left: 26px;
  color: rgba(255,255,255,.86);
  line-height: 1.55;
}
.about-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b00;
  box-shadow: 0 0 0 6px rgba(255,107,0,.13);
}
.about-benefits-list strong {
  color: #fff;
}
.about-benefits-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(6,15,28,.22);
}
.about-benefits-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 57%, rgba(213,25,49,.24) 57.2% 62%, transparent 62.2%),
    linear-gradient(0deg, rgba(4,8,14,.25), transparent 55%);
  pointer-events: none;
}
.about-benefits-media img {
  width: 100%;
  height: clamp(360px, 32vw, 500px);
  display: block;
  object-fit: cover;
  object-position: center;
}
.about-modules-section {
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 92% 10%, rgba(213,25,49,.08), transparent 25%),
    #f6f8fb;
}
.about-modules-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-modules-grid article {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8,22,38,.96), rgba(9,64,112,.92)),
    #092744;
  box-shadow: 0 22px 58px rgba(11, 35, 60, .14);
}
.about-modules-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(213,25,49,.96), rgba(142,9,28,.94)),
    #d51931;
}
.about-modules-grid h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.06;
  font-weight: 900;
}
.about-modules-grid p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 1180px) {
  .about-solution-section,
  .about-benefits-section {
    grid-template-columns: 1fr;
  }
  .about-benefits-section {
    background: #07111d;
  }
  .about-benefits-media {
    max-width: 820px;
  }
  .about-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .about-solution-panel,
  .about-features-grid,
  .about-modules-grid {
    grid-template-columns: 1fr;
  }
  .about-solution-panel article,
  .about-feature-card,
  .about-modules-grid article {
    min-height: auto;
  }
  .about-solution-copy h2,
  .about-benefits-copy h2,
  .about-modules-section .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
}
@media (max-width: 560px) {
  .about-solution-section,
  .about-features-section,
  .about-benefits-section,
  .about-modules-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .about-solution-panel {
    padding: 16px;
    gap: 12px;
  }
  .about-solution-panel article,
  .about-feature-card,
  .about-modules-grid article {
    padding: 22px;
  }
  .about-benefits-media img {
    height: 280px;
  }
}
.dark-panel {
  max-width: none;
  margin: 0;
  color: #fff;
  background: #071326;
}
.dark-panel .section-heading,
.dark-panel .info-grid { max-width: var(--page); }
.dark-panel h2,
.dark-panel .info-grid h3 { color: #fff; }
.dark-panel .info-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.dark-panel .info-grid p { color: rgba(255,255,255,.78); }

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 44px max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  background: var(--soft);
}
.support-strip a {
  min-height: 130px;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.support-strip span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 22px;
}

.catalog-shell {
  max-width: var(--page);
  margin: 0 auto;
  padding: 24px;
}
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: start;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #243142;
  font-weight: 800;
}
.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.search-box {
  display: grid;
  gap: 7px;
  color: #52606d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  color: #52606d;
}
.catalog-meta button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #eef2f6;
  font-weight: 900;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-card-image {
  height: 245px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5f8fb, #fff);
}
.product-card-image img {
  max-width: 90%;
  max-height: 210px;
  object-fit: contain;
}
.product-card-body {
  flex: 1;
  display: grid;
  gap: 10px;
  padding: 18px;
}
.product-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card p {
  margin: 0;
  color: #566371;
}
.card-button {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.empty-state { grid-column: 1 / -1; color: #566371; }
.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}
.catalog-pagination[hidden] {
  display: none;
}
.pagination-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #132033;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 20, 35, .08);
}
.pagination-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.pagination-button:disabled {
  cursor: not-allowed;
  opacity: .42;
  box-shadow: none;
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
}
.product-dialog::backdrop { background: rgba(2, 8, 18, .68); }
.dialog-card {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef2f6;
  color: #071326;
  font-weight: 900;
}
.dialog-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  background: #f4f7fb;
}
.dialog-media img {
  max-width: 92%;
  max-height: 320px;
  object-fit: contain;
}
.dialog-copy h2 { margin: 8px 0 10px; font-size: 30px; line-height: 1.05; }
.dialog-copy p { color: #566371; }
.dialog-copy li { margin: 8px 0; color: #364354; }

.product-detail-mount {
  padding: clamp(38px, 5vw, 72px) var(--pad) clamp(64px, 7vw, 104px);
  background:
    radial-gradient(circle at 88% 4%, rgba(215, 25, 50, .09), transparent 30%),
    linear-gradient(180deg, #f8fafc, #fff 48%, #f7f9fc);
}
.product-detail-page {
  max-width: 1240px;
  margin: 0 auto;
}
.product-detail-loading,
.product-not-found {
  max-width: 760px;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-detail-loading h1,
.product-not-found h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
}
.product-detail-loading p,
.product-not-found p { color: #516070; }
.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #697789;
  font-size: 13px;
  font-weight: 800;
}
.product-breadcrumb a {
  color: var(--red);
  text-decoration: none;
}
.product-breadcrumb strong { color: #142033; }
.product-detail-layout {
  display: grid;
  grid-template-columns: 82px minmax(0, 500px) minmax(340px, 1fr);
  gap: 22px;
  align-items: stretch;
}
.product-thumbnails {
  display: grid;
  align-content: start;
  gap: 12px;
}
.product-thumbnails button {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 20, 35, .08);
}
.product-thumbnails button.is-active {
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(215, 25, 50, .15);
}
.product-thumbnails img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}
.product-detail-media {
  min-height: 550px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f2f5f8, #fff);
  box-shadow: 0 24px 60px rgba(8, 20, 35, .11);
}
.product-detail-media img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.product-detail-copy {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-detail-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: .96;
}
.product-detail-copy > p {
  margin: 0;
  color: #4c5a6a;
  font-size: 17px;
  line-height: 1.65;
}
.detail-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.detail-status span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f3f6fa;
  color: #263444;
  font-size: 12px;
  font-weight: 900;
}
.detail-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-check-list li {
  position: relative;
  padding-left: 24px;
  color: #2f3d4e;
}
.detail-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.detail-primary-action,
.detail-whatsapp-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}
.detail-primary-action {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(215, 25, 50, .22);
}
.detail-whatsapp-action {
  background: #1fae4b;
  color: #fff;
}
.product-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  margin-top: 24px;
}
.product-tabs-card,
.related-products {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-tabs-card {
  padding: 22px;
}
.product-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-tab-list button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #dde5ee;
  border-radius: 999px;
  background: #fff;
  color: #2b3949;
  font-weight: 900;
}
.product-tab-list button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.product-tab-panel {
  display: none;
  padding-top: 18px;
  color: #425164;
  line-height: 1.7;
}
.product-tab-panel.is-active { display: block; }
.product-tab-panel h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.product-tab-panel p { margin: 0 0 14px; }
.product-tab-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}
.product-tab-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
.product-tab-panel dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f6;
}
.product-tab-panel dt {
  color: #132033;
  font-weight: 900;
}
.product-tab-panel dd { margin: 0; }
.related-products {
  align-self: start;
  padding: 20px;
}
.related-products h2 {
  margin: 0 0 14px;
  font-size: 22px;
}
.related-product-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 12px 0;
  border-top: 1px solid #eef2f6;
  color: inherit;
  text-decoration: none;
}
.related-product-card img {
  grid-row: span 3;
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f7fb;
}
.related-product-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.related-product-card strong {
  line-height: 1.15;
}
.related-product-card small {
  color: var(--red);
  font-weight: 900;
}

.contact-page-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 88px) var(--pad) clamp(48px, 5vw, 76px);
  background:
    radial-gradient(circle, rgba(205, 31, 61, .16) 1px, transparent 1.5px) calc(100% - 8px) 44px / 14px 14px no-repeat,
    linear-gradient(112deg, #f8fafc 0 31%, #fff 31% 100%);
}
.contact-page-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -390px;
  top: 100px;
  border: 90px solid rgba(205, 31, 61, .035);
  border-radius: 50%;
  pointer-events: none;
}
.contact-commercial-layout {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(600px, 1.22fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
  margin: 0 auto;
}
.contact-showcase {
  position: relative;
  min-height: 470px;
  color: #101927;
}
.contact-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 12px 0;
}
.contact-showcase .eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
}
.contact-showcase h1 {
  max-width: 13ch;
  margin: 0;
  color: #111a29;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}
.contact-showcase h1 span {
  display: block;
  color: var(--red);
}
.contact-title-rule {
  width: 42px;
  height: 3px;
  display: block;
  margin: 24px 0 22px;
  background: var(--red);
}
.contact-showcase-content > p:not(.eyebrow) {
  max-width: 410px;
  margin: 0;
  color: #556171;
  font-size: 17px;
  line-height: 1.65;
}
.contact-hours-card {
  width: min(100%, 330px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 24, 38, .09);
}
.contact-hours-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.contact-hours-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-hours-card h2 {
  margin: 0 0 5px;
  color: #111a29;
  font-size: 16px;
  line-height: 1.2;
}
.contact-hours-card p,
.contact-hours-card strong {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.contact-hours-card p { color: #5c6775; }
.contact-hours-card strong { color: var(--red); }
.contact-form.contact-commercial-form {
  position: relative;
  z-index: 2;
  align-content: start;
  margin: 0;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 58px rgba(12, 24, 38, .12);
}
.contact-form-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 6px;
}
.contact-form-heading-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.contact-form-heading-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form-heading h2 {
  margin: 0 0 4px;
  color: #111a29;
  font-size: 24px;
  line-height: 1.1;
}
.contact-form-heading p {
  margin: 0;
  color: #657080;
  font-size: 13px;
  line-height: 1.5;
}
.contact-form.contact-commercial-form label {
  gap: 9px;
  color: #1c2736;
  font-size: 11px;
}
.contact-form.contact-commercial-form label > span {
  display: inline-block;
}
.contact-form.contact-commercial-form label b {
  color: var(--red);
}
.contact-form.contact-commercial-form input,
.contact-form.contact-commercial-form select,
.contact-form.contact-commercial-form textarea {
  border-color: #dbe2ea;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(12, 24, 38, .02);
}
.contact-form.contact-commercial-form input:focus,
.contact-form.contact-commercial-form select:focus,
.contact-form.contact-commercial-form textarea:focus {
  outline: 2px solid rgba(205, 31, 61, .16);
  border-color: var(--red);
}
.contact-form.contact-commercial-form textarea {
  min-height: 128px;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
}
.contact-security-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #556171;
}
.contact-security-note > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.contact-security-note svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-security-note p {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.2;
}
.contact-security-note strong {
  color: #344151;
  font-size: 12px;
}
.contact-security-note small {
  color: #7b8591;
  font-size: 11px;
}
.contact-form.contact-commercial-form button {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 24px;
}
.contact-form.contact-commercial-form button span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}
.contact-form.contact-commercial-form button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 28px var(--pad);
  background: linear-gradient(135deg, #e01834, #b70f28);
  color: #fff;
}
.contact-proof-strip div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.28);
}
.contact-proof-strip div:last-child { border-right: 0; }
.contact-proof-strip span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.contact-proof-strip svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-proof-strip strong {
  max-width: 170px;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.form-section,
.contact-layout { align-items: start; }
.contact-card { padding: 30px; }
.contact-card h2 { margin-bottom: 18px; }
.contact-card a,
.contact-card span {
  display: block;
  margin: 10px 0;
  color: #10141a;
  font-weight: 800;
  text-decoration: none;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12,24,38,.06);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #52606d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #132033;
  text-transform: none;
}
.contact-form select {
  appearance: auto;
  cursor: pointer;
}
.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}
.contact-form button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .split-layout,
  .contact-layout {
    max-width: 820px;
    grid-template-columns: 1fr;
  }
  .empresa-intro-section {
    grid-template-columns: 1fr;
  }
  .split-layout figure { order: 2; }
  .contact-card,
  .contact-form {
    width: 100%;
  }
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #f21f34 0%, #d51931 46%, #ba1026 100%);
}
.footer-inner {
  max-width: 1760px;
  display: grid;
  grid-template-columns: minmax(265px, 1fr) minmax(190px, .76fr) minmax(220px, .82fr) minmax(180px, .68fr) minmax(330px, 1fr);
  gap: clamp(22px, 2.6vw, 48px);
  margin: 0 auto;
  padding: 52px clamp(30px, 3.4vw, 56px) 34px;
  align-items: start;
}
.footer-brand-block {
  min-height: 245px;
  padding-right: clamp(22px, 2vw, 42px);
  border-right: 1px solid rgba(255,255,255,.23);
}
.footer-logo {
  width: 245px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 20px;
}
.footer-brand-block p {
  max-width: 350px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 2;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #d51931;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(89, 0, 13, .16);
}
.site-footer h2 {
  position: relative;
  margin: 0 0 27px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}
.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.92);
}
.footer-link-block {
  display: grid;
  align-content: start;
  gap: 21px;
}
.footer-link-block a,
.footer-contact-line {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  line-height: 1.35;
}
.footer-link-block a:hover,
.footer-contact-line:hover {
  color: #fff;
  opacity: .78;
}
.footer-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  color: #fff;
}
.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-block {
  min-height: 330px;
  padding-left: clamp(22px, 2.4vw, 44px);
  border-left: 1px solid rgba(255,255,255,.23);
}
.footer-contact-line {
  align-items: start;
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.45;
}
.footer-contact-line strong {
  font-weight: 900;
}
.footer-contact-line span {
  min-width: 0;
}
.footer-phone { font-size: 15px; font-weight: 400; }
.footer-subscribe {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.footer-subscribe label {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  font-size: 17px;
}
.footer-subscribe label span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 500;
}
.footer-subscribe > span {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-subscribe div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 8px;
}
.footer-subscribe input {
  min-width: 0;
  height: 48px;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  background: rgba(105, 0, 18, .25);
  color: #fff;
  font: inherit;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.footer-subscribe input::placeholder {
  color: rgba(255,255,255,.62);
}
.footer-subscribe button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #d51931;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(89, 0, 13, .16);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, .38);
  border-radius: inherit;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.whatsapp-icon {
  width: 35px;
  height: 35px;
  display: block;
}

@media (max-width: 1280px) {
  .seo-service-section {
    grid-template-columns: 1fr;
  }
  .seo-service-section > * {
    max-width: none;
  }
  .header-inner {
    height: 86px;
    grid-template-columns: 136px minmax(0, 1fr) auto;
    gap: 12px;
    padding-right: 16px;
  }
  .brand {
    width: 116px;
    height: 116px;
    padding: 0;
  }
  .brand img {
    width: 116px;
    height: 116px;
  }
  .header-quote { display: none; }
  .header-help { display: none; }
  .header-actions { gap: 12px; }
  .header-search-icon {
    width: 50px;
    height: 50px;
    min-height: 50px;
  }
  .header-contact-button {
    min-height: 50px;
    padding: 0 22px;
  }
  .site-nav { gap: 8px; }
  .site-nav a {
    padding: 0 6px;
    font-size: 14px;
  }
  .product-mega-menu {
    left: 156px;
    right: 18px;
    grid-template-columns: minmax(190px, 1.05fr) repeat(3, minmax(136px, 1fr));
  }
  .mega-image { display: none; }
  .home-lines-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fire-process-section {
    grid-template-columns: 1fr;
  }
  .fire-process-map {
    width: min(100%, 720px);
    margin: 0 auto;
  }
  .fire-process-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .fire-process-copy > p:not(.eyebrow),
  .fire-process-list {
    margin-left: auto;
    margin-right: auto;
  }
  .fire-process-list {
    max-width: 720px;
    text-align: left;
  }
  .process-grid,
  .interest-grid,
  .product-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail-layout {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .product-detail-copy {
    grid-column: 1 / -1;
  }
  .product-info-layout {
    grid-template-columns: 1fr;
  }
  .contact-commercial-layout {
    max-width: 1040px;
    grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
    gap: 42px;
  }
  .contact-showcase {
    min-height: 460px;
  }
  .contact-showcase h1 {
    max-width: 13ch;
    font-size: clamp(40px, 5vw, 56px);
  }
  .contact-form.contact-commercial-form {
    margin: 0;
    border-radius: 8px;
  }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand-block {
    grid-column: 1 / -1;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .footer-contact-block {
    grid-column: 1 / -1;
    min-height: auto;
    padding-left: 0;
    padding-top: 34px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.2);
  }
}
@media (max-width: 860px) {
  :root { --header: 118px; }
  .product-detail-mount {
    padding-top: 34px;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .product-thumbnails {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .product-thumbnails button {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
  }
  .product-detail-media {
    min-height: 390px;
  }
  .product-detail-media img {
    max-height: 350px;
  }
  .product-detail-copy {
    grid-column: auto;
  }
  .product-tab-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .global-header {
    min-height: var(--header);
    padding: 0;
    box-shadow: 0 12px 30px rgba(8, 20, 35, .08);
  }
  .header-inner {
    max-width: none;
    height: var(--header);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(12px, 3vw, 24px);
    padding: 0 clamp(18px, 4.6vw, 34px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .brand {
    width: clamp(132px, 30vw, 178px);
    height: var(--header);
    padding: 0;
    overflow: visible;
    background: transparent;
    clip-path: none;
  }
  .brand img {
    width: clamp(132px, 30vw, 178px);
    height: clamp(132px, 30vw, 178px);
    box-shadow: 0 18px 35px rgba(75, 0, 9, .2);
  }
  .header-actions {
    height: var(--header);
    gap: clamp(14px, 4vw, 28px);
  }
  .header-quote {
    display: inline-flex;
    min-height: clamp(52px, 10vw, 70px);
    padding: 0 clamp(22px, 5vw, 38px);
    border-radius: 999px;
    background: linear-gradient(135deg, #ef1f39 0%, #c91431 100%);
    font-size: clamp(17px, 4.2vw, 26px);
    box-shadow: 0 14px 30px rgba(213,25,49,.26);
  }
  .menu-toggle {
    display: grid;
    place-content: center;
    width: clamp(50px, 11vw, 70px);
    height: clamp(50px, 11vw, 70px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .menu-toggle span {
    width: clamp(35px, 7.8vw, 50px);
    height: 4px;
    margin: 4px auto;
    border-radius: 999px;
    background: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
  }
  .header-location,
  .header-search-icon,
  .header-help,
  .header-contact-button { display: none; }
  .product-mega-menu { display: none; }
  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    padding: 12px var(--pad) 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - var(--header));
    overflow-y: auto;
    box-shadow: 0 20px 45px rgba(8, 20, 35, .12);
  }
  body.menu-open .site-nav { display: grid; }
  .nav-item {
    height: auto;
    display: block;
  }
  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .site-nav a::after { display: none; }
  .hero,
  .hero-inner { min-height: 620px; }
  body[data-page="home"] .image-slide-hero {
    min-height: clamp(720px, 132vw, 980px);
    aspect-ratio: auto;
    background: #05080e;
  }
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: inherit;
  }
  body[data-page="home"] .image-slide-hero .hero-bg,
  body[data-page="home"] .image-slide-hero .hero-bg-clone {
    object-fit: cover;
    object-position: 30% center;
    background: #05080e;
  }
  body[data-page="home"] .image-slide-hero .home-hero-copy {
    bottom: 22px;
    z-index: 3;
  }
  body[data-page="home"] .image-slide-hero .hero-dots {
    gap: 16px;
  }
  body[data-page="home"] .image-slide-hero .hero-dots button {
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,.56);
  }
  body[data-page="home"] .image-slide-hero .hero-dots button.is-active {
    width: 18px;
    background: var(--red);
  }
  body[data-page="home"] .home-lines-section {
    display: none;
  }
  .mobile-home-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background:
      radial-gradient(circle at 8% 0%, rgba(213,25,49,.16), transparent 32%),
      linear-gradient(135deg, #0a1119 0%, #18202a 100%);
    color: #fff;
    padding: 34px var(--pad);
  }
  .mobile-home-proof article {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 0 12px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.26);
  }
  .mobile-home-proof article:last-child {
    border-right: 0;
  }
  .mobile-home-proof span {
    display: grid;
    place-items: center;
    color: var(--red);
    font-size: clamp(44px, 12vw, 72px);
  }
  .mobile-home-proof strong {
    max-width: 10ch;
    font-size: clamp(14px, 3.8vw, 22px);
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-home-categories {
    display: block;
    padding: 38px var(--pad) 52px;
    background:
      radial-gradient(circle at 100% 0%, rgba(213,25,49,.07), transparent 30%),
      linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
  }
  .mobile-home-categories .eyebrow {
    margin-bottom: 12px;
    font-size: clamp(14px, 3.4vw, 18px);
  }
  .mobile-home-categories h2 {
    max-width: 680px;
    margin: 0 0 30px;
    color: #071323;
    font-size: clamp(34px, 8.8vw, 56px);
    line-height: 1.15;
    font-weight: 900;
  }
  .mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 20px);
  }
  .mobile-category-card {
    min-height: clamp(156px, 30vw, 210px);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 20px 12px;
    border: 1px solid rgba(12,24,38,.08);
    border-radius: 16px;
    background: #fff;
    color: #071323;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 20px 42px rgba(12,24,38,.1);
  }
  .mobile-category-card span {
    color: var(--red);
    font-size: clamp(46px, 11vw, 70px);
  }
  .mobile-category-card strong {
    max-width: 13ch;
    font-size: clamp(14px, 3.8vw, 21px);
    line-height: 1.2;
    font-weight: 900;
  }
  .product-category-hero img { min-height: 230px; }
  .product-summary-section { padding-top: 44px; padding-bottom: 56px; }
  .hero-inner { padding-bottom: 56px; }
  .image-slide-hero .hero-inner { padding: 0; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .home-lines-heading {
    display: grid;
    align-items: start;
  }
  .home-lines-all {
    width: fit-content;
  }
  .category-grid,
  .home-lines-grid,
  .process-grid,
  .interest-grid,
  .info-grid,
  .empresa-values-grid,
  .product-summary-grid,
  .support-strip,
  .split-layout,
  .contact-layout,
  .catalog-tools,
  .dialog-card {
    grid-template-columns: 1fr;
  }
  .split-layout figure img,
  .empresa-intro-media img { height: 360px; }
  .fire-process-section {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .fire-process-map {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .fire-process-map::before,
  .fire-node::after {
    display: none;
  }
  .fire-process-center {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    min-height: 120px;
    grid-column: 1 / -1;
    border-radius: 18px;
  }
  .fire-node {
    position: static;
    width: auto;
    min-height: 92px;
  }
  .fire-process-copy {
    text-align: left;
  }
  .red-band { display: grid; }
  .contact-page-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }
  .contact-commercial-layout {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-showcase { min-height: auto; }
  .contact-showcase-content {
    max-width: 620px;
    padding: 0;
  }
  .contact-showcase h1 {
    max-width: 14ch;
    font-size: clamp(40px, 8vw, 54px);
  }
  .contact-showcase-content > p:not(.eyebrow) {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.6;
  }
  .contact-hours-card { margin-top: 28px; }
  .contact-form.contact-commercial-form { padding: 30px; }
  .contact-proof-strip {
    grid-template-columns: 1fr;
    padding: 22px var(--pad);
  }
  .contact-proof-strip div {
    min-height: 70px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
  .contact-proof-strip div:last-child { border-bottom: 0; }
  .catalog-meta {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .filter-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }
  .catalog-pagination { flex-wrap: wrap; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { width: 210px; }
  .footer-subscribe div { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
@media (max-width: 560px) {
  :root {
    --header: 112px;
    --pad: 16px;
  }
  .header-inner {
    padding: 0 18px;
    gap: 12px;
  }
  .brand {
    width: 132px;
    height: var(--header);
  }
  .brand img {
    width: 132px;
    height: 132px;
  }
  .header-quote {
    min-height: 52px;
    padding: 0 23px;
    font-size: 18px;
  }
  .menu-toggle {
    width: 54px;
    height: 54px;
  }
  .menu-toggle span {
    width: 38px;
  }
  .category-section,
  .process-section,
  .interest-section,
  .page-section,
  .catalog-section { padding-top: 48px; padding-bottom: 48px; }
  .product-detail-mount {
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .product-breadcrumb {
    font-size: 12px;
  }
  .product-detail-media {
    min-height: 330px;
    padding: 16px;
  }
  .product-detail-media img {
    max-height: 300px;
  }
  .product-detail-copy,
  .product-tabs-card,
  .related-products {
    padding: 18px;
  }
  .detail-actions,
  .detail-primary-action,
  .detail-whatsapp-action {
    width: 100%;
  }
  .product-tab-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-tab-list button {
    justify-content: center;
  }
  .seo-service-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .seo-keyword-grid {
    grid-template-columns: 1fr;
  }
  .hero,
  .hero-inner { min-height: 560px; }
  .subpage-hero,
  .subpage-hero .hero-inner { min-height: 360px; }
  .empresa-hero.subpage-hero,
  .empresa-hero.subpage-hero .hero-inner { min-height: 400px; }
  body[data-page="home"] .image-slide-hero {
    min-height: clamp(680px, 154vw, 880px);
    aspect-ratio: auto;
  }
  body[data-page="home"] .image-slide-hero .hero-bg,
  body[data-page="home"] .image-slide-hero .hero-bg-clone {
    object-position: 32% center;
  }
  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(36px, 13vw, 54px);
    line-height: .92;
  }
  .hero p:not(.eyebrow),
  .subpage-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.35;
  }
  .contact-showcase { min-height: auto; }
  .contact-showcase-content { padding: 0; }
  .contact-showcase h1 {
    max-width: 13ch;
    font-size: clamp(38px, 11vw, 50px);
  }
  .contact-title-rule {
    margin-top: 20px;
    margin-bottom: 18px;
  }
  .contact-hours-card {
    width: 100%;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }
  .contact-hours-icon {
    width: 50px;
    height: 50px;
  }
  .contact-form.contact-commercial-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .contact-form-heading {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }
  .contact-form-heading-icon {
    width: 44px;
    height: 44px;
  }
  .contact-form-heading h2 { font-size: 21px; }
  .contact-form-actions {
    display: grid;
    gap: 18px;
  }
  .contact-form.contact-commercial-form button {
    width: 100%;
  }
  .contact-proof-strip strong {
    max-width: none;
    font-size: 15px;
  }
  .contact-proof-strip span {
    width: 48px;
    height: 48px;
  }
  .mobile-home-proof {
    padding: 28px 10px;
  }
  .mobile-home-proof article {
    min-height: 128px;
    gap: 12px;
    padding: 0 8px;
  }
  .mobile-home-proof span {
    font-size: 46px;
  }
  .mobile-home-proof strong {
    font-size: 13px;
  }
  .mobile-home-categories {
    padding: 34px 16px 46px;
  }
  .mobile-home-categories h2 {
    margin-bottom: 26px;
    font-size: 36px;
  }
  .mobile-category-grid {
    gap: 10px;
  }
  .mobile-category-card {
    min-height: 152px;
    padding: 18px 8px;
    border-radius: 14px;
  }
  .mobile-category-card span {
    font-size: 48px;
  }
  .mobile-category-card strong {
    font-size: 13px;
  }
  .home-hero-distributor-button,
  .primary-action,
  .text-action {
    width: 100%;
    min-height: 48px;
  }
  .empresa-intro-section,
  .empresa-values-section { padding-top: 46px; padding-bottom: 46px; }
  .empresa-values-grid article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .product-category-hero img { min-height: 190px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 220px; }
  .product-summary-card figure { height: 210px; }
  .home-lines-section { padding-top: 48px; padding-bottom: 48px; }
  .home-line-card figure { height: 210px; }
  .home-line-copy { min-height: auto; padding: 22px; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-icon {
    width: 31px;
    height: 31px;
  }
  .category-card figure,
  .interest-card img,
  .article-card img { height: 210px; }
  .contact-form { grid-template-columns: 1fr; }
  .fire-process-map {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fire-process-center {
    min-height: 112px;
  }
  .fire-process-center strong {
    font-size: 48px;
  }
  .fire-node {
    min-height: 78px;
  }
  .fire-process-copy h2 {
    font-size: clamp(30px, 10vw, 44px);
  }
  .fire-process-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .fire-process-list li {
    padding-left: 20px;
  }
  .catalog-shell { padding: 16px; }
  .catalog-meta {
    display: grid;
    align-items: start;
  }
  .catalog-meta button { width: 100%; }
  .pagination-button {
    width: 40px;
    height: 40px;
  }
  .dialog-media { min-height: 260px; }
  .footer-inner {
    padding: 36px 18px 26px;
    gap: 26px;
  }
  .footer-brand-block { padding-bottom: 24px; }
  .footer-contact-block { padding-top: 24px; }
  .footer-social { gap: 12px; }
  .footer-bottom nav { flex-wrap: wrap; }
}

.company-profile-section,
.company-pillars-section,
.company-audience-section,
.company-advantages-section {
  padding-left: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
}
.company-profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  gap: 72px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fff;
}
.company-profile-copy {
  min-width: 0;
}
.company-profile-copy h2,
.company-section-heading h2,
.company-audience-heading h2,
.company-advantages-copy h2 {
  margin: 0;
  color: #071323;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
.company-profile-copy > p:not(.eyebrow),
.company-section-heading > p:not(.eyebrow),
.company-advantages-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #455365;
  font-size: 17px;
  line-height: 1.72;
}
.company-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #dce3eb;
}
.company-profile-stats article {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0 24px;
  border-left: 1px solid #dce3eb;
}
.company-profile-stats article:first-child {
  padding-left: 0;
  border-left: 0;
}
.company-profile-stats strong {
  color: var(--red);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}
.company-profile-stats span {
  color: #263547;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}
.company-profile-media {
  position: relative;
  min-width: 0;
  margin: 0;
}
.company-profile-media img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.company-profile-media figcaption {
  position: absolute;
  left: -32px;
  right: 40px;
  bottom: -26px;
  display: grid;
  gap: 5px;
  padding: 22px 26px;
  color: #fff;
  background: #d51931;
  box-shadow: 0 18px 42px rgba(124, 8, 25, .2);
}
.company-profile-media figcaption strong {
  font-size: 20px;
  font-weight: 900;
}
.company-profile-media figcaption span {
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}
.company-pillars-section {
  padding-top: 84px;
  padding-bottom: 92px;
  background: #f4f6f8;
}
.company-section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}
.company-pillars-grid {
  max-width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.company-pillars-grid article {
  min-width: 0;
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 17px;
  padding: 28px;
  border: 1px solid #dde4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 29, 48, .07);
}
.company-pillar-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #d51931;
  background: #fff0f2;
  border-radius: 8px;
}
.company-pillar-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.company-pillars-grid h3 {
  margin: 0;
  color: #071323;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 900;
}
.company-pillars-grid p {
  margin: 0;
  color: #506073;
  font-size: 15px;
  line-height: 1.65;
}
.company-audience-section {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  color: #fff;
  background: #09111c;
}
.company-audience-heading .eyebrow {
  color: #ff334c;
}
.company-audience-heading h2 {
  color: #fff;
  font-size: 42px;
}
.company-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}
.company-audience-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.company-audience-grid span {
  color: #ff334c;
  font-size: 13px;
  font-weight: 900;
}
.company-audience-grid strong {
  max-width: 260px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}
.company-advantages-section {
  display: grid;
  grid-template-columns: minmax(440px, .96fr) minmax(0, 1.04fr);
  gap: 72px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 102px;
  background: #fff;
}
.company-advantages-media {
  min-width: 0;
  margin: 0;
}
.company-advantages-media img {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.company-advantages-copy {
  min-width: 0;
}
.company-advantages-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dce3eb;
}
.company-advantages-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  color: #4a596a;
  line-height: 1.55;
  border-bottom: 1px solid #dce3eb;
}
.company-advantages-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 23px;
  width: 13px;
  height: 7px;
  border-left: 3px solid #d51931;
  border-bottom: 3px solid #d51931;
  transform: rotate(-45deg);
}
.company-advantages-list strong {
  color: #071323;
}
.company-advantages-action {
  width: fit-content;
  margin-top: 30px;
  background: #d51931;
}
@media (max-width: 1040px) {
  .company-profile-section,
  .company-audience-section,
  .company-advantages-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .company-profile-section {
    padding-top: 68px;
    padding-bottom: 78px;
  }
  .company-profile-media {
    max-width: 760px;
  }
  .company-profile-media figcaption {
    left: 24px;
  }
  .company-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company-audience-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .company-audience-heading {
    max-width: 690px;
  }
  .company-advantages-media {
    max-width: 820px;
  }
}
@media (max-width: 680px) {
  .company-profile-section,
  .company-pillars-section,
  .company-audience-section,
  .company-advantages-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .company-profile-section,
  .company-pillars-section,
  .company-audience-section,
  .company-advantages-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }
  .company-profile-copy h2,
  .company-section-heading h2,
  .company-audience-heading h2,
  .company-advantages-copy h2 {
    font-size: 34px;
  }
  .company-profile-copy > p:not(.eyebrow),
  .company-section-heading > p:not(.eyebrow) {
    font-size: 16px;
  }
  .company-profile-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .company-profile-stats article,
  .company-profile-stats article:first-child {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    padding: 0 0 18px;
    border-left: 0;
    border-bottom: 1px solid #dce3eb;
  }
  .company-profile-stats strong {
    font-size: 30px;
  }
  .company-profile-media img,
  .company-advantages-media img {
    height: 360px;
  }
  .company-profile-media figcaption {
    position: static;
    padding: 20px;
  }
  .company-pillars-grid,
  .company-audience-grid {
    grid-template-columns: 1fr;
  }
  .company-pillars-grid article {
    min-height: 0;
  }
  .company-audience-grid article {
    min-height: 122px;
  }
  .company-advantages-action {
    width: 100%;
  }
}
@media (max-width: 380px) {
  :root { --header: 102px; }
  .header-inner {
    padding: 0 14px;
    gap: 8px;
  }
  .brand {
    width: 112px;
    height: var(--header);
  }
  .brand img {
    width: 112px;
    height: 112px;
  }
  .header-quote {
    display: inline-flex;
    min-height: 46px;
    padding: 0 18px;
    font-size: 16px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
  }
  .menu-toggle span {
    width: 34px;
  }
  .site-nav {
    padding-left: 14px;
    padding-right: 14px;
  }
  body[data-page="home"] .image-slide-hero {
    min-height: 650px;
  }
  .mobile-home-proof strong,
  .mobile-category-card strong {
    font-size: 12px;
  }
  .mobile-category-card {
    min-height: 138px;
  }
  .pagination-button {
    width: 38px;
    height: 38px;
  }
}

/* Catalog redesign */
.catalog-page {
  min-height: 100vh;
  padding: 30px max(var(--pad), calc((100vw - 1380px) / 2 + var(--pad))) 76px;
  background:
    radial-gradient(circle at 96% 4%, rgba(215,25,50,.06), transparent 24%),
    #f4f6f9;
}
.catalog-intro {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background:
    linear-gradient(127deg, transparent 0 59%, rgba(226,230,235,.65) 59.2% 68%, transparent 68.2%),
    linear-gradient(135deg, #fff 0%, #f8f9fb 62%, #eceff3 100%);
  box-shadow: 0 18px 50px rgba(18,29,42,.08);
}
.catalog-intro::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 470px;
  height: 470px;
  border: 42px solid rgba(215,25,50,.08);
  border-radius: 50%;
}
.catalog-intro-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  padding: 54px 56px;
}
.catalog-intro-copy h1 {
  max-width: 620px;
  margin: 10px 0 18px;
  color: #101a28;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}
.catalog-intro-copy h1 em {
  color: var(--red);
  font-style: normal;
}
.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: #465365;
  font-size: 17px;
  line-height: 1.65;
}
.catalog-intro-line {
  width: 58px;
  height: 4px;
  display: block;
  margin-top: 25px;
  background: var(--red);
}
.catalog-category-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(9, minmax(105px, 1fr));
  gap: 10px;
  margin: -34px 26px 26px;
}
.catalog-category-button {
  min-width: 0;
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 15px 8px;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  color: #172231;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 30px rgba(20,31,45,.09);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.catalog-category-button:hover,
.catalog-category-button.is-active {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.catalog-category-button .footer-icon {
  width: 34px;
  height: 34px;
  color: currentColor;
}
.catalog-category-button .footer-icon svg {
  width: 30px;
  height: 30px;
}
.catalog-category-button > span:last-child {
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 900;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.catalog-sidebar {
  position: sticky;
  top: calc(var(--header) + 20px);
  min-width: 0;
  padding: 24px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18,31,48,.07);
}
.catalog-sidebar-title {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 9px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7eaf0;
  color: #162130;
}
.catalog-sidebar-title > span {
  width: 20px;
  height: 20px;
}
.catalog-sidebar-title svg,
.catalog-search svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.catalog-sidebar-title strong {
  font-size: 14px;
  text-transform: uppercase;
}
.catalog-sidebar-title button {
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.catalog-search {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
}
.catalog-search > span {
  color: #253143;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-search > div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #d9e0e8;
  border-radius: 6px;
  color: #697789;
}
.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #172231;
  background: transparent;
}
.catalog-filter-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.catalog-filter-group legend {
  width: 100%;
  margin-bottom: 12px;
  color: #172231;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-check {
  min-height: 38px;
  display: grid;
  grid-template-columns: 19px 1fr auto;
  gap: 10px;
  align-items: center;
  color: #4b5868;
  cursor: pointer;
}
.catalog-check input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--red);
}
.catalog-check span {
  font-size: 14px;
}
.catalog-check small {
  color: #8b96a5;
  font-size: 12px;
}
.catalog-sidebar-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 22px;
  padding: 17px;
  border-radius: 8px;
  color: #fff;
  background: #111b29;
}
.catalog-sidebar-note .footer-icon {
  width: 38px;
  height: 38px;
  color: #fff;
}
.catalog-sidebar-note p {
  display: grid;
  gap: 5px;
  margin: 0;
}
.catalog-sidebar-note strong {
  font-size: 13px;
}
.catalog-sidebar-note span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.45;
}
.catalog-results {
  min-width: 0;
}
.catalog-results-toolbar {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  color: #566273;
  font-size: 13px;
}
.catalog-results-toolbar label {
  display: flex;
  gap: 9px;
  align-items: center;
}
.catalog-results-toolbar select {
  min-height: 42px;
  padding: 0 36px 0 13px;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  color: #263243;
  background: #fff;
  font: inherit;
}
.catalog-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catalog-page .product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,29,46,.07);
}
.catalog-page .product-card-image {
  height: 235px;
  padding: 18px;
  background: linear-gradient(145deg, #fff 0%, #f4f5f7 100%);
}
.catalog-page .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.catalog-page .product-card-body {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 21px;
}
.catalog-page .product-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-page .product-card h3 {
  margin: 9px 0 11px;
  font-size: 20px;
  line-height: 1.15;
}
.catalog-page .product-card p {
  margin: 0 0 20px;
  color: #596676;
  font-size: 14px;
  line-height: 1.55;
}
.catalog-page .card-button {
  width: fit-content;
  min-height: 40px;
  align-self: end;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}
.catalog-page .card-button:hover {
  color: #fff;
  background: var(--red);
}
.catalog-pagination {
  margin-top: 30px;
}
.catalog-proof-strip,
.products-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17,31,48,.06);
}
.catalog-proof-strip article,
.products-proof-strip article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding: 25px 28px;
  border-right: 1px solid #e3e7ed;
}
.catalog-proof-strip article:last-child,
.products-proof-strip article:last-child {
  border-right: 0;
}
.catalog-proof-strip .footer-icon,
.products-proof-strip .footer-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
}
.catalog-proof-strip p,
.products-proof-strip p {
  display: grid;
  gap: 5px;
  margin: 0;
}
.catalog-proof-strip strong,
.products-proof-strip strong {
  color: #15202f;
  font-size: 14px;
}
.catalog-proof-strip p span,
.products-proof-strip p span {
  color: #687485;
  font-size: 12px;
  line-height: 1.45;
}

/* Products redesign */
.products-reference-hero {
  max-width: 1660px;
  margin: 28px auto 0;
  padding: 0 var(--pad);
}
.products-reference-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(18,28,42,.12);
}
.products-category-section {
  padding: 72px max(var(--pad), calc((100vw - 1380px) / 2 + var(--pad))) 84px;
  background:
    radial-gradient(circle at 96% 10%, rgba(215,25,50,.05), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
.products-category-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.products-category-heading h1 {
  margin: 9px 0 16px;
  color: #101a28;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
.products-category-heading > p:not(.eyebrow) {
  margin: 0;
  color: #526071;
  font-size: 17px;
  line-height: 1.65;
}
.products-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.products-category-card {
  position: relative;
  min-width: 0;
  min-height: 348px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(150px, 1.08fr);
  overflow: hidden;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background:
    linear-gradient(130deg, #fff 0%, #fff 53%, #f1f3f6 53.2%, #fff 100%);
  box-shadow: 0 16px 38px rgba(17,31,48,.08);
}
.products-category-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -95px;
  width: 225px;
  height: 225px;
  border: 22px solid rgba(215,25,50,.06);
  border-radius: 50%;
  pointer-events: none;
}
.products-category-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 28px 0 26px 26px;
}
.products-category-copy > .footer-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(215,25,50,.23);
}
.products-category-copy > .footer-icon svg {
  width: 29px;
  height: 29px;
}
.products-category-copy h2 {
  margin: 0 0 12px;
  color: #111b29;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
}
.products-category-copy p {
  margin: 0 0 19px;
  color: #4f5c6d;
  font-size: 13px;
  line-height: 1.55;
}
.products-category-copy a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}
.products-category-card figure {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 24px 14px 16px 0;
}
.products-category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.08) contrast(1.02);
  transition: transform .25s ease;
}
.products-category-card:hover img {
  transform: scale(1.035);
}
.products-proof-strip {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .catalog-category-strip {
    grid-template-columns: repeat(5, minmax(105px, 1fr));
  }
  .catalog-layout {
    grid-template-columns: 248px minmax(0, 1fr);
  }
  .catalog-page .product-grid,
  .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-proof-strip,
  .products-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-proof-strip article:nth-child(2),
  .products-proof-strip article:nth-child(2) {
    border-right: 0;
  }
  .catalog-proof-strip article:nth-child(-n+2),
  .products-proof-strip article:nth-child(-n+2) {
    border-bottom: 1px solid #e3e7ed;
  }
}
@media (max-width: 820px) {
  .catalog-page {
    padding: 18px 16px 56px;
  }
  .catalog-intro {
    min-height: 300px;
  }
  .catalog-intro-copy {
    padding: 40px 30px;
  }
  .catalog-intro-copy h1 {
    font-size: 42px;
  }
  .catalog-category-strip {
    display: flex;
    gap: 10px;
    margin: -28px 12px 22px;
    padding: 0 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .catalog-category-button {
    flex: 0 0 116px;
    scroll-snap-align: start;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .catalog-filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }
  .catalog-sidebar-note {
    display: none;
  }
  .products-reference-hero {
    margin-top: 18px;
    padding: 0 16px;
  }
  .products-category-section {
    padding: 54px 16px 64px;
  }
  .products-category-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  .catalog-intro {
    min-height: 280px;
  }
  .catalog-intro-copy {
    padding: 32px 22px;
  }
  .catalog-intro-copy h1 {
    font-size: 35px;
  }
  .catalog-intro-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .catalog-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-results-toolbar label {
    width: 100%;
    justify-content: space-between;
  }
  .catalog-results-toolbar select {
    min-width: 170px;
  }
  .catalog-filter-group {
    grid-template-columns: 1fr;
  }
  .catalog-page .product-grid,
  .products-category-grid {
    grid-template-columns: 1fr;
  }
  .catalog-page .product-card-image {
    height: 260px;
  }
  .catalog-proof-strip,
  .products-proof-strip {
    grid-template-columns: 1fr;
  }
  .catalog-proof-strip article,
  .products-proof-strip article,
  .catalog-proof-strip article:nth-child(2),
  .products-proof-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e3e7ed;
  }
  .catalog-proof-strip article:last-child,
  .products-proof-strip article:last-child {
    border-bottom: 0;
  }
  .products-reference-hero {
    padding: 0;
  }
  .products-reference-hero img {
    border-radius: 0;
  }
  .products-category-heading h1 {
    font-size: 34px;
  }
  .products-category-card {
    min-height: 330px;
  }
  .products-category-copy {
    padding-left: 22px;
  }
}

/* UFI-inspired type system: Montserrat for structure, Roboto for reading. */
body,
input,
textarea,
select {
  font-family: var(--font-body);
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.site-nav a,
.header-contact-button,
.header-quote,
.home-hero-distributor-button,
.primary-action,
.text-action,
.card-button,
.eyebrow,
.product-kicker,
.catalog-sidebar-title,
.catalog-filter-group legend,
.catalog-search > span,
.site-footer h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
label,
button,
input,
textarea,
select,
small,
strong {
  letter-spacing: 0;
}

p,
li {
  line-height: 1.65;
}

.site-nav a {
  font-size: var(--type-small);
  font-weight: 600;
  line-height: 1.2;
}

.header-help-label,
.header-help small {
  font-family: var(--font-body);
  font-weight: 500;
}

.header-help strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.header-contact-button,
.header-quote,
.home-hero-distributor-button,
.primary-action,
.text-action,
.card-button,
button {
  font-weight: 700;
}

.eyebrow,
.product-kicker {
  font-size: var(--type-caption);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.hero h1,
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hero p:not(.eyebrow),
.subpage-hero p:not(.eyebrow) {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.5;
}

.catalog-intro-copy h1,
.products-category-heading h1,
.contact-showcase h1,
.product-detail-copy h1,
.product-not-found h1 {
  font-family: var(--font-display);
  font-size: var(--type-page);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.seo-service-section h2,
.category-copy h2,
.section-heading h2,
.page-section h2,
.home-lines-heading h2,
.fire-process-copy h2,
.red-band h2,
.empresa-intro-copy h2,
.about-modules-section .section-heading h2,
.about-heading h2,
.about-benefits-copy h2,
.company-advantages-copy h2,
.company-section-heading h2,
.company-audience-heading h2,
.related-products h2 {
  font-family: var(--font-display);
  font-size: var(--type-section);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-card h3,
.home-line-copy h3,
.product-summary-card h3,
.empresa-values-grid h3,
.about-feature-card h3,
.about-modules-grid h3,
.dark-panel .info-grid h3,
.product-card h3,
.product-tab-panel h3,
.company-pillars-grid h3,
.products-category-copy h2,
.mega-highlight h2 {
  font-family: var(--font-display);
  font-size: var(--type-card);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.mega-column h3,
.catalog-sidebar-title strong,
.catalog-filter-group legend,
.catalog-search > span,
.site-footer h2 {
  font-size: var(--type-small);
  font-weight: 700;
  line-height: 1.35;
}

.catalog-intro-copy > p:not(.eyebrow),
.products-category-heading > p:not(.eyebrow),
.contact-showcase-content > p:not(.eyebrow),
.company-profile-copy > p:not(.eyebrow),
.company-section-heading > p:not(.eyebrow),
.company-advantages-copy > p:not(.eyebrow),
.empresa-intro-copy p:not(.eyebrow),
.about-solution-copy p:not(.eyebrow),
.about-heading > p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.category-copy p:not(.eyebrow),
.seo-service-section p:not(.eyebrow) {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.7;
}

.product-card p,
.products-category-copy p,
.catalog-check span,
.site-footer,
.site-footer a,
.site-footer p,
.site-footer input {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

.product-card h3,
.catalog-page .product-card h3 {
  font-size: var(--type-card);
  font-weight: 700;
  line-height: 1.3;
}

.catalog-page .product-card p {
  font-size: var(--type-small);
  line-height: 1.65;
}

.contact-form-heading h2,
.contact-hours-card h2,
.contact-card h2,
.dialog-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.contact-form label,
.contact-form.contact-commercial-form label {
  font-family: var(--font-display);
  font-size: var(--type-caption);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }
  .catalog-intro-copy h1,
  .products-category-heading h1,
  .contact-showcase h1,
  .product-detail-copy h1,
  .product-not-found h1 {
    font-size: clamp(34px, 9.5vw, 46px);
  }
  .seo-service-section h2,
  .category-copy h2,
  .section-heading h2,
  .page-section h2,
  .home-lines-heading h2,
  .fire-process-copy h2,
  .red-band h2,
  .empresa-intro-copy h2,
  .about-modules-section .section-heading h2,
  .about-heading h2,
  .about-benefits-copy h2,
  .company-advantages-copy h2,
  .company-section-heading h2,
  .company-audience-heading h2,
  .related-products h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

/* Final Simonetta interface system */
:root {
  --ui-red: #d7193f;
  --ui-red-dark: #b80f30;
  --ui-ink: #111820;
  --ui-muted: #566273;
  --ui-page: #f4f6f8;
  --ui-surface: #ffffff;
  --ui-line: #d9e0e7;
  --ui-soft: #eef1f4;
  --ui-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ui-ink);
  background: var(--ui-surface);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.site-nav,
button,
.button,
.card-button {
  letter-spacing: 0;
}

.product-card,
.catalog-intro,
.catalog-category-strip,
.catalog-category-button,
.catalog-sidebar,
.catalog-proof-strip,
.products-reference-hero img,
.products-category-card,
.products-proof-strip,
.product-detail-media,
.product-detail-copy,
.product-tabs-card,
.related-products,
.related-product-card,
.company-pillars-grid article,
.company-audience-grid article,
.fire-process-card,
.process-card,
.contact-card,
.page-card {
  box-shadow: none !important;
}

.card-button,
.detail-primary-action,
.detail-whatsapp-action,
.pagination-button,
.catalog-reset,
.catalog-sidebar button,
.footer-subscribe button,
.red-band a,
.site-header .header-cta {
  min-height: 44px;
  border-radius: 6px;
  box-shadow: none !important;
  transform: none !important;
  font-size: 14px;
  font-weight: 800;
}

.card-button:hover,
.detail-primary-action:hover,
.detail-whatsapp-action:hover,
.pagination-button:hover,
.catalog-category-button:hover,
.products-category-card:hover,
.related-product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.catalog-page {
  padding: 28px 0 72px;
  background: var(--ui-page);
}

.catalog-intro {
  min-height: 210px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.catalog-intro::before,
.catalog-intro::after {
  display: none;
}

.catalog-intro-copy {
  width: min(760px, 100%);
  padding: 34px 40px;
}

.catalog-intro-copy h1 {
  margin: 5px 0 10px;
  font-size: 42px;
  line-height: 1.08;
}

.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.65;
}

.catalog-category-strip {
  grid-template-columns: repeat(9, minmax(104px, 1fr));
  gap: 0;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.catalog-category-button {
  min-height: 86px;
  gap: 6px;
  border: 0;
  border-right: 1px solid var(--ui-line);
  border-radius: 0;
  background: transparent;
  color: var(--ui-ink);
  font-size: 12px;
}

.catalog-category-button:last-child {
  border-right: 0;
}

.catalog-category-button svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.catalog-category-button.is-active {
  color: var(--ui-red);
  background: #fff4f6;
  box-shadow: inset 0 -3px 0 var(--ui-red) !important;
}

.catalog-toolbar {
  margin-bottom: 18px;
}

.catalog-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
}

.catalog-sidebar {
  align-self: start;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.catalog-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-page .product-card {
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.catalog-page .product-card-image {
  height: 285px;
  padding: 18px;
  border-bottom: 1px solid var(--ui-line);
  background: #f7f8f9;
}

.catalog-page .product-card-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: none;
}

.catalog-page .product-card-body {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.catalog-page .product-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
}

.catalog-page .product-card p {
  margin: 0;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-page .product-card .card-button {
  width: fit-content;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--ui-red);
  background: transparent;
  color: var(--ui-red);
}

.catalog-page .product-card .card-button:hover {
  background: var(--ui-red);
  color: #fff;
}

.catalog-proof-strip,
.products-proof-strip {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.product-detail-mount {
  padding: 28px 0 72px;
  background: var(--ui-page);
}

.product-detail-layout.is-single-image {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 20px;
}

.product-detail-layout.is-single-image > .product-detail-media {
  grid-column: 1;
  grid-row: 1;
}

.product-detail-layout.is-single-image > .product-detail-copy {
  grid-column: 2;
  grid-row: 1;
}

.product-detail-media,
.product-detail-copy {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.product-detail-media {
  min-height: 500px;
  padding: 28px;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-copy {
  padding: 30px 32px;
}

.product-detail-copy h1 {
  max-width: 720px;
  margin: 8px 0 14px;
  font-size: 40px;
  line-height: 1.08;
}

.product-detail-copy > p {
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.65;
}

.detail-status {
  gap: 6px;
}

.detail-status span {
  border: 1px solid var(--ui-line);
  background: var(--ui-soft);
  font-size: 12px;
}

.detail-check-list {
  gap: 8px;
}

.detail-primary-action {
  background: var(--ui-red);
}

.detail-primary-action:hover {
  background: var(--ui-red-dark);
}

.detail-whatsapp-action {
  background: #148c43;
}

.product-info-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  margin-top: 20px;
}

.product-tabs-card,
.related-products {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.product-tab-list {
  gap: 6px;
  border-bottom: 1px solid var(--ui-line);
}

.product-tab-list button {
  min-height: 40px;
  border-radius: 6px;
  box-shadow: none;
}

.related-products h2 {
  font-size: 24px;
}

.related-product-card {
  grid-template-columns: 74px minmax(0, 1fr);
  border: 1px solid var(--ui-line);
  border-radius: 6px;
}

.related-product-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #f7f8f9;
  mix-blend-mode: multiply;
}

.products-reference-hero {
  padding-top: 28px;
  padding-bottom: 24px;
  background: var(--ui-surface);
}

.products-reference-hero img {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
}

.products-category-section {
  padding-top: 46px;
  padding-bottom: 64px;
  background: var(--ui-page);
}

.products-category-heading h1 {
  font-size: 42px;
  line-height: 1.08;
}

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

.products-category-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.products-category-card::before,
.products-category-card::after {
  display: none;
}

.products-category-copy {
  padding: 24px 8px 24px 24px;
}

.products-category-copy h2 {
  margin: 8px 0;
  font-size: 23px;
}

.products-category-copy p {
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.55;
}

.products-category-copy .category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: none;
}

.products-category-card figure {
  min-height: 260px;
  padding: 18px 16px 18px 0;
  background: #f7f8f9;
}

.products-category-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: none !important;
}

.fire-process-section,
.seo-service-section,
.company-pillars-section,
.company-audience-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.process-grid,
.company-pillars-grid {
  gap: 16px;
}

.process-grid article,
.company-pillars-grid article {
  min-height: 0;
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
}

.company-pillars-grid article {
  padding: 24px;
}

.company-pillars-grid h3 {
  font-size: 20px;
  line-height: 1.25;
}

.red-band {
  min-height: 150px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.red-band h2 {
  max-width: 760px;
  font-size: 34px;
  line-height: 1.15;
}

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

.footer-inner {
  grid-template-columns: 1.3fr repeat(3, .85fr) 1.35fr;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 30px;
}

.footer-brand-block,
.footer-contact-block {
  min-height: 0;
}

.footer-logo {
  width: 180px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-block p,
.footer-link-block a,
.footer-contact-line {
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand-block p {
  margin: 14px 0 18px;
}

.footer-link-block,
.footer-contact-block {
  gap: 9px;
}

.footer-link-block h2,
.footer-contact-block h2 {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  box-shadow: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-solution-card,
.home-line-card,
.company-profile-section,
.company-advantages-section,
.contact-showcase,
.contact-showcase-form,
.contact-hours-card,
.article-card,
.interest-card,
.mega-panel,
.mega-highlight,
.mobile-category-card {
  box-shadow: none !important;
}

.hero h1,
.subpage-hero h1 {
  font-size: 58px;
}

.seo-service-section h2,
.category-copy h2,
.section-heading h2,
.page-section h2,
.home-lines-heading h2,
.fire-process-copy h2,
.empresa-intro-copy h2,
.about-modules-section .section-heading h2,
.about-heading h2,
.about-benefits-copy h2,
.company-advantages-copy h2,
.company-section-heading h2,
.company-audience-heading h2 {
  font-size: 38px;
  line-height: 1.12;
}

.product-detail-copy h1 {
  font-size: 34px;
  line-height: 1.12;
}

.footer-subscribe {
  margin-top: 14px;
  padding-top: 14px;
}

.footer-subscribe input,
.footer-subscribe button {
  min-height: 42px;
}

@media (max-width: 1120px) {
  .catalog-category-strip {
    overflow-x: auto;
    grid-template-columns: repeat(9, 118px);
  }
  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand-block,
  .footer-contact-block {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .catalog-intro-copy h1,
  .products-category-heading h1 {
    font-size: 36px;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .catalog-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-layout.is-single-image,
  .product-info-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-layout.is-single-image > .product-detail-media,
  .product-detail-layout.is-single-image > .product-detail-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .product-detail-copy h1 {
    font-size: 30px;
  }
  .related-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .related-products h2 {
    grid-column: 1 / -1;
  }
  .related-product-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }
  .hero h1,
  .subpage-hero h1 {
    font-size: 40px;
  }
  .catalog-intro-copy h1,
  .products-category-heading h1,
  .contact-showcase h1,
  .product-not-found h1 {
    font-size: 32px;
  }
  .seo-service-section h2,
  .category-copy h2,
  .section-heading h2,
  .page-section h2,
  .home-lines-heading h2,
  .fire-process-copy h2,
  .red-band h2,
  .empresa-intro-copy h2,
  .about-modules-section .section-heading h2,
  .about-heading h2,
  .about-benefits-copy h2,
  .company-advantages-copy h2,
  .company-section-heading h2,
  .company-audience-heading h2,
  .related-products h2 {
    font-size: 29px;
  }
  .product-detail-copy h1 {
    font-size: 28px;
  }
  .catalog-page,
  .product-detail-mount {
    padding-top: 18px;
    padding-bottom: 48px;
  }
  .catalog-intro {
    min-height: 0;
  }
  .catalog-intro-copy {
    padding: 26px 22px;
  }
  .catalog-intro-copy h1,
  .products-category-heading h1 {
    font-size: 32px;
  }
  .catalog-intro-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .catalog-page .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .catalog-page .product-card {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
  }
  .catalog-page .product-card-image {
    height: auto;
    min-height: 218px;
    padding: 12px;
    border-right: 1px solid var(--ui-line);
    border-bottom: 0;
  }
  .catalog-page .product-card-body {
    min-height: 218px;
    padding: 15px;
  }
  .catalog-page .product-card h3 {
    font-size: 17px;
  }
  .catalog-page .product-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 13px;
  }
  .catalog-page .product-card .card-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }
  .product-detail-media {
    min-height: 340px;
    padding: 18px;
  }
  .product-detail-media img {
    max-height: 310px;
  }
  .product-detail-copy {
    padding: 24px 20px;
  }
  .product-detail-copy h1 {
    font-size: 30px;
  }
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .product-tab-list button {
    flex: 0 0 auto;
  }
  .related-products {
    grid-template-columns: 1fr;
  }
  .products-reference-hero {
    padding-top: 18px;
  }
  .products-category-section,
  .fire-process-section,
  .seo-service-section,
  .company-pillars-section,
  .company-audience-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .products-category-grid {
    grid-template-columns: 1fr;
  }
  .products-category-card {
    min-height: 286px;
    grid-template-columns: minmax(0, 1fr) 46%;
  }
  .products-category-copy {
    padding: 20px 4px 20px 20px;
  }
  .products-category-card figure {
    min-height: 240px;
    padding: 14px 12px 14px 0;
  }
  .red-band {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .red-band h2 {
    font-size: 28px;
  }
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    padding-top: 30px;
  }
  .footer-brand-block,
  .footer-contact-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .catalog-page .product-card {
    grid-template-columns: 122px minmax(0, 1fr);
  }
  .catalog-page .product-card-image,
  .catalog-page .product-card-body {
    min-height: 206px;
  }
  .catalog-page .product-card-body {
    padding: 13px;
  }
  .catalog-page .product-card h3 {
    font-size: 16px;
  }
  .products-category-card {
    min-height: 310px;
    grid-template-columns: 52% 48%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand-block,
  .footer-contact-block {
    grid-column: auto;
  }
}

/* Unified interface system: flat, compact and stable across every page. */
:root {
  --font-display: "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --ui-red: #d7193f;
  --ui-red-dark: #b81232;
  --ui-ink: #101820;
  --ui-muted: #536171;
  --ui-page: #f3f5f7;
  --ui-surface: #ffffff;
  --ui-soft: #eef1f4;
  --ui-line: #d8dee6;
  --ui-radius: 6px;
}

html {
  background: var(--ui-page);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body {
  color: var(--ui-ink);
  background: var(--ui-page);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.eyebrow,
.nav-link,
.header-help strong,
.footer-column h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

img {
  height: auto;
}

.global-header,
.header-inner,
.brand,
.site-nav,
.header-actions {
  box-shadow: none !important;
}

.global-header {
  border-bottom: 1px solid var(--ui-line);
  background: #fff;
}

.header-inner {
  min-height: 92px;
}

.brand {
  overflow: visible;
}

.brand img {
  display: block;
  object-fit: contain;
}

.nav-link {
  min-height: 44px;
  color: #1a2430;
  font-size: 14px;
  font-weight: 650;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.header-search-icon,
.header-help,
.header-contact-button,
.header-quote,
.menu-toggle {
  filter: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.header-search-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ui-line);
  border-radius: 50%;
  background: #fff;
}

.header-help {
  min-height: 52px;
  padding: 0 16px;
  border-left: 1px solid var(--ui-line);
  border-radius: 0;
  background: #fff;
}

.header-contact-button,
.header-quote {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ui-red);
  border-radius: var(--ui-radius);
  color: #fff;
  background: var(--ui-red) !important;
}

.header-contact-button:hover,
.header-quote:hover {
  border-color: var(--ui-red-dark);
  background: var(--ui-red-dark) !important;
}

.primary-button,
.secondary-button,
.card-button,
.catalog-apply-button,
.catalog-clear-button,
.detail-primary-action,
.detail-whatsapp-action,
.red-band a,
.contact-submit,
.footer-form button,
.product-tab-list button,
.pagination-button {
  min-height: 42px;
  border-radius: var(--ui-radius) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.catalog-page,
.product-detail-mount,
.products-category-section,
.process-section,
.seo-service-section,
.company-pillars-section,
.company-audience-section {
  background: var(--ui-page);
}

.catalog-intro,
.catalog-category-strip,
.catalog-sidebar,
.catalog-proof-strip,
.product-card,
.product-detail-media,
.product-detail-copy,
.product-tabs-card,
.related-products,
.related-product-card,
.products-category-card,
.products-proof-strip,
.process-grid article,
.seo-keyword-grid a,
.company-pillars-grid article {
  border: 1px solid var(--ui-line);
  border-radius: var(--ui-radius);
  box-shadow: none !important;
}

.catalog-intro {
  min-height: 176px;
  background: #fff;
}

.catalog-intro-copy {
  max-width: 760px;
  padding: 34px 38px;
}

.catalog-intro-copy h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.6;
}

.catalog-category-strip {
  overflow: hidden;
  margin-top: 18px;
  background: #fff;
}

.catalog-category-button {
  min-height: 92px;
  gap: 7px;
  padding: 12px 6px;
  border: 0;
  border-right: 1px solid var(--ui-line);
  border-radius: 0 !important;
  color: var(--ui-ink);
  background: #fff;
}

.catalog-category-button:last-child {
  border-right: 0;
}

.catalog-category-button .footer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #f0c7cf;
  border-radius: var(--ui-radius);
  color: var(--ui-red);
  background: #fff2f4;
}

.catalog-category-button .footer-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.catalog-category-button.is-active {
  color: var(--ui-red);
  background: #fff6f7;
  box-shadow: inset 0 -3px 0 var(--ui-red) !important;
}

.catalog-category-button.is-active .footer-icon {
  border-color: var(--ui-red);
  color: #fff;
  background: var(--ui-red);
}

.catalog-layout {
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 18px;
}

.catalog-sidebar {
  padding: 18px;
  background: #fff;
}

.catalog-results-toolbar {
  min-height: 44px;
  margin-bottom: 12px;
}

.catalog-page .product-grid {
  gap: 14px;
}

.catalog-page .product-card {
  overflow: hidden;
  background: #fff;
}

.catalog-page .product-card-image {
  height: 292px;
  padding: 10px;
  border-bottom: 1px solid var(--ui-line);
  background: var(--ui-soft);
}

.catalog-page .product-card-image img,
.related-product-card img,
.product-detail-media img,
.products-category-card figure img {
  mix-blend-mode: multiply;
}

.catalog-page .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-page .product-card-body {
  min-height: 210px;
  padding: 16px;
}

.catalog-page .product-card .product-category {
  margin-bottom: 8px;
  font-size: 11px;
}

.catalog-page .product-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.18;
}

.catalog-page .product-card p {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-page .product-card .card-button {
  align-self: end;
  margin-top: 13px;
}

.catalog-proof-strip article,
.products-proof-strip article {
  padding: 18px;
  border-right: 1px solid var(--ui-line);
}

.catalog-proof-strip article:last-child,
.products-proof-strip article:last-child {
  border-right: 0;
}

.catalog-proof-strip .footer-icon,
.products-proof-strip .footer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--ui-radius);
  color: var(--ui-red);
  background: #fff0f3;
}

.product-detail-layout {
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.product-detail-gallery.is-single-image {
  grid-template-columns: 1fr;
}

.product-detail-media {
  min-height: 520px;
  padding: 24px;
  background: var(--ui-soft);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
}

.product-detail-copy {
  padding: 32px;
  background: #fff;
}

.product-detail-copy h1 {
  max-width: 680px;
  margin: 8px 0 14px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.product-detail-copy > p {
  max-width: 700px;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.55;
}

.detail-badges span {
  border: 1px solid var(--ui-line);
  border-radius: 999px;
  background: var(--ui-soft);
}

.detail-feature-list li::before {
  box-shadow: none;
}

.product-tabs-card,
.related-products {
  margin-top: 18px;
  padding: 22px;
  background: #fff;
}

.product-tab-list {
  gap: 6px;
  border-bottom: 1px solid var(--ui-line);
}

.product-tab-list button {
  border: 1px solid transparent;
  background: transparent;
}

.product-tab-list button.is-active {
  border-color: var(--ui-red);
  color: #fff;
  background: var(--ui-red);
}

.related-products h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.related-product-card {
  background: #fff;
}

.related-product-card figure {
  background: var(--ui-soft);
}

.products-category-grid {
  gap: 14px;
}

.products-category-card {
  min-height: 330px;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  background: #fff;
}

.products-category-copy {
  padding: 22px 4px 22px 22px;
}

.products-category-copy > .footer-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid #f0c7cf;
  border-radius: var(--ui-radius);
  color: var(--ui-red);
  background: #fff0f3;
  box-shadow: none !important;
}

.products-category-copy > .footer-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.products-category-copy h2 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.12;
}

.products-category-copy p {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.products-category-copy a {
  font-size: 13px;
  text-decoration: none;
}

.products-category-card figure {
  min-height: 292px;
  padding: 14px;
  background: var(--ui-soft);
}

.products-category-card figure img {
  width: 100%;
  height: 100%;
  max-height: 284px;
  object-fit: contain;
}

.process-grid {
  gap: 14px;
}

.process-grid article,
.company-pillars-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #fff;
}

.process-grid article::before,
.company-pillars-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--ui-red);
}

.process-grid article > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--ui-radius);
  color: #fff;
  background: var(--ui-red);
}

.seo-keyword-grid {
  gap: 10px;
}

.seo-keyword-grid a {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 34px;
  color: var(--ui-ink);
  background: #fff;
}

.seo-keyword-grid a::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ui-red);
}

.company-pillar-icon {
  border-radius: var(--ui-radius);
  box-shadow: none !important;
}

.red-band {
  border: 0;
  background: var(--ui-red) !important;
  box-shadow: none !important;
}

.red-band .section-shell {
  gap: 28px;
}

.red-band a {
  border: 1px solid #fff;
  color: var(--ui-red);
  background: #fff;
}

.site-footer {
  border-top: 0;
  box-shadow: none !important;
}

.footer-inner {
  padding-top: 34px;
  padding-bottom: 26px;
}

.footer-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-float {
  box-shadow: none !important;
}

@media (max-width: 1080px) {
  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .catalog-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-layout {
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 78px;
  }
  .catalog-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .product-detail-media {
    min-height: 420px;
  }
  .catalog-proof-strip,
  .products-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-intro-copy {
    padding: 24px 20px;
  }
  .catalog-category-strip {
    overflow-x: auto;
  }
  .catalog-category-button {
    flex: 0 0 108px;
  }
  .catalog-page .product-grid {
    grid-template-columns: 1fr;
  }
  .catalog-page .product-card {
    grid-template-columns: 148px minmax(0, 1fr);
  }
  .catalog-page .product-card-image,
  .catalog-page .product-card-body {
    min-height: 214px;
  }
  .catalog-page .product-card-image {
    height: auto;
    border-right: 1px solid var(--ui-line);
    border-bottom: 0;
  }
  .catalog-page .product-card-body {
    padding: 14px;
  }
  .products-category-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "media" "copy";
  }
  .products-category-card figure {
    grid-area: media;
    min-height: 230px;
    padding: 14px;
    border-bottom: 1px solid var(--ui-line);
  }
  .products-category-copy {
    grid-area: copy;
    padding: 18px;
  }
  .products-category-copy > .footer-icon {
    margin-bottom: 8px;
  }
  .catalog-proof-strip article,
  .products-proof-strip article {
    border-bottom: 1px solid var(--ui-line);
  }
  .product-detail-copy {
    padding: 24px 20px;
  }
  .product-detail-copy h1 {
    font-size: clamp(27px, 9vw, 34px);
  }
  .process-grid,
  .company-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .catalog-page,
  .product-detail-mount {
    padding-top: 12px;
  }
  .catalog-intro-copy h1 {
    font-size: 31px;
  }
  .catalog-page .product-card {
    display: block;
  }
  .catalog-page .product-card-image {
    height: 224px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ui-line);
  }
  .catalog-page .product-card-body {
    min-height: 205px;
  }
  .catalog-proof-strip,
  .products-proof-strip {
    grid-template-columns: 1fr;
  }
  .product-detail-media {
    min-height: 310px;
    padding: 14px;
  }
  .product-detail-media img {
    max-height: 280px;
  }
  .products-category-card figure {
    min-height: 220px;
  }
}

/* Final responsive polish: compact catalog, readable mobile heroes and stable product sheets. */
.catalog-mobile-filter-toggle,
.products-reference-mobile-copy {
  display: none;
}

.catalog-page,
.product-detail-mount {
  padding-top: 46px;
}

.catalog-intro {
  min-height: 142px;
}

.catalog-intro-copy {
  padding: 26px 32px;
}

.catalog-intro-copy h1 {
  margin-bottom: 8px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.catalog-intro-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.52;
}

.catalog-category-button {
  min-height: 80px;
}

.catalog-sidebar {
  top: 112px;
}

.catalog-page .product-card-image {
  height: 304px;
  background: #f6f7f8;
}

.catalog-page .product-card-body {
  min-height: 190px;
  gap: 5px;
}

.catalog-page .product-card p {
  min-height: 38px;
  -webkit-line-clamp: 2;
}

.catalog-page .product-card .card-button {
  margin-top: 8px;
}

.product-breadcrumb {
  margin-bottom: 14px;
}

.product-detail-layout {
  align-items: stretch;
}

.product-detail-media {
  min-height: 470px;
  background: #f6f7f8;
}

.product-detail-media img {
  max-height: 420px;
}

.product-detail-copy {
  padding: 28px;
}

.product-detail-copy h1 {
  max-width: 600px;
  margin: 7px 0 12px;
  font-size: clamp(29px, 2.55vw, 36px);
  line-height: 1.08;
}

.product-info-layout {
  gap: 18px;
}

.product-tabs-card,
.related-products {
  padding: 18px;
}

.related-products h2 {
  font-size: 22px;
}

.related-product-card img {
  background: #f6f7f8;
}

.products-reference-hero {
  background: #fff;
}

.products-reference-hero img {
  display: block;
}

.products-category-card figure,
.products-category-card figure img {
  background: #f6f7f8;
}

@media (max-width: 860px) {
  .catalog-page,
  .product-detail-mount {
    padding-top: 40px;
  }

  .catalog-mobile-filter-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0 10px;
    padding: 0 16px;
    border: 1px solid var(--ui-line);
    border-radius: var(--ui-radius);
    color: var(--ui-ink);
    font-size: 14px;
    font-weight: 700;
    background: #fff;
  }

  .catalog-mobile-filter-toggle svg {
    width: 19px;
    height: 19px;
    color: var(--ui-red);
  }

  .catalog-mobile-filter-toggle::after {
    content: "+";
    margin-left: auto;
    color: var(--ui-red);
    font-size: 22px;
    font-weight: 500;
  }

  .catalog-mobile-filter-toggle.is-open::after {
    content: "\2212";
  }

  .catalog-sidebar {
    display: none;
    margin-bottom: 12px;
  }

  .catalog-sidebar.is-open {
    display: block;
  }

  .catalog-layout {
    display: block;
  }

  .product-detail-media {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .image-slide-hero {
    min-height: 620px;
    aspect-ratio: auto;
    background: #070a0e;
  }

  body[data-page="home"] .image-slide-hero .hero-bg,
  body[data-page="home"] .image-slide-hero .hero-bg-clone {
    object-fit: cover;
    object-position: 76% center;
  }

  body[data-page="home"] .image-slide-hero .hero-overlay {
    z-index: 1;
    display: block;
    background: linear-gradient(90deg, rgba(5, 8, 12, .96) 0%, rgba(5, 8, 12, .84) 44%, rgba(5, 8, 12, .24) 78%, rgba(5, 8, 12, .06) 100%);
  }

  body[data-page="home"] .image-slide-hero .hero-inner {
    z-index: 2;
    min-height: inherit;
    align-items: center;
    padding: 42px 22px 72px;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy {
    position: static;
    width: min(72%, 330px);
    margin: 0 auto 0 0;
    transform: none;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy > .eyebrow,
  body[data-page="home"] .image-slide-hero .home-hero-copy > h1,
  body[data-page="home"] .image-slide-hero .home-hero-copy > p,
  body[data-page="home"] .image-slide-hero .home-hero-distributor-button {
    display: block;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy > h1 {
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(35px, 11vw, 52px);
    line-height: .96;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy > h1 span {
    display: block;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy > h1 span:last-child {
    color: #f12643;
  }

  body[data-page="home"] .image-slide-hero .home-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.5;
  }

  body[data-page="home"] .image-slide-hero .home-hero-distributor-button {
    width: max-content;
    margin-top: 22px;
  }

  body[data-page="home"] .image-slide-hero .hero-dots {
    position: absolute;
    left: 22px;
    bottom: 28px;
  }

  .products-reference-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 0;
    background: #f4f5f6;
  }

  .products-reference-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(246, 247, 248, .98) 0%, rgba(246, 247, 248, .88) 52%, rgba(246, 247, 248, .12) 84%);
  }

  .products-reference-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center;
  }

  .products-reference-mobile-copy {
    position: relative;
    z-index: 2;
    width: min(70%, 310px);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 20px;
  }

  .products-reference-mobile-copy h1 {
    margin: 10px 0 16px;
    color: var(--ui-ink);
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .products-reference-mobile-copy h1 em {
    color: var(--ui-red);
    font-style: normal;
  }

  .products-reference-mobile-copy > p:not(.eyebrow) {
    color: var(--ui-muted);
    font-size: 14px;
    line-height: 1.52;
  }

  .products-reference-mobile-copy a {
    width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 16px;
    border-radius: var(--ui-radius);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: var(--ui-red);
  }

  .catalog-intro {
    min-height: 0;
  }

  .catalog-intro-copy {
    padding: 20px;
  }

  .catalog-category-button {
    min-height: 76px;
  }

  .catalog-page .product-card,
  .catalog-page .product-card-image,
  .catalog-page .product-card-body {
    min-height: 0;
  }

  .catalog-page .product-card-image {
    height: 236px;
  }

  .catalog-page .product-card-body {
    padding: 15px;
  }

  .product-detail-copy h1 {
    font-size: clamp(26px, 7.8vw, 32px);
    line-height: 1.08;
  }

  .product-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .product-tab-list button {
    flex: 0 0 auto;
  }
}

@media (max-width: 430px) {
  .catalog-page,
  .product-detail-mount {
    padding-top: 32px;
  }

  .catalog-intro-copy h1 {
    font-size: 29px;
  }

  .catalog-page .product-card-image {
    height: 248px;
  }

  .catalog-page .product-card-body {
    min-height: 178px;
  }

  .product-detail-media {
    min-height: 292px;
  }

  .product-detail-copy {
    padding: 20px 16px;
  }

  .product-detail-copy h1 {
    font-size: 28px;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-actions a {
    width: 100%;
    justify-content: center;
  }

  .products-reference-hero,
  .products-reference-mobile-copy {
    min-height: 520px;
  }

  .products-reference-mobile-copy {
    width: 74%;
  }
}

/* Unified visual system: one rhythm for catalog, product pages and responsive views. */
html {
  scroll-padding-top: 96px;
}

body,
button,
input,
select,
textarea {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.eyebrow,
.nav-link,
.header-help strong,
.site-footer h2 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

:where(.catalog-page, .product-detail-mount, .products-category-section) {
  color: #101722;
  background: #f4f6f8;
}

:where(.catalog-intro, .catalog-category-strip, .catalog-sidebar, .product-card,
  .product-detail-media, .product-detail-copy, .product-tabs-card, .related-products,
  .related-product-card, .products-category-card, .products-proof-strip,
  .catalog-proof-strip, .process-grid article, .company-pillars-grid article) {
  border-color: #d9dee5;
  border-radius: 6px;
  box-shadow: none !important;
}

:where(.primary-button, .secondary-button, .card-button, .catalog-apply-button,
  .catalog-clear-button, .detail-primary-action, .detail-whatsapp-action,
  .contact-submit, .red-band a, .footer-subscribe button, .pagination-button) {
  min-height: 42px;
  border-radius: 6px !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  font-size: 13px;
  font-weight: 750;
}

.global-header {
  background: #fff;
}

.header-inner {
  min-height: 84px;
  height: 84px;
}

.brand,
.brand img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  object-fit: contain;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
}

.nav-link svg,
.header-search-icon svg,
.header-help-icon svg,
.header-contact-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-search-icon {
  width: 44px;
  height: 44px;
}

.header-help {
  min-height: 48px;
  padding-inline: 14px;
}

.header-contact-button,
.header-quote {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 6px;
  box-shadow: none !important;
}

.catalog-page,
.product-detail-mount {
  padding-top: 32px;
}

.catalog-intro {
  min-height: 126px;
  background: #fff;
}

.catalog-intro-copy {
  max-width: 820px;
  padding: 22px 28px;
}

.catalog-intro-copy h1 {
  margin: 3px 0 7px;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.05;
}

.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.5;
}

.catalog-intro-line {
  margin-top: 12px;
}

.catalog-category-strip {
  margin-top: 12px;
}

.catalog-category-button {
  min-height: 76px;
  padding: 9px 5px;
  font-size: 12px;
  font-weight: 700;
}

.catalog-category-button .footer-icon {
  width: 34px;
  height: 34px;
}

.catalog-category-button .footer-icon svg {
  width: 20px;
  height: 20px;
}

.catalog-layout {
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.catalog-sidebar {
  padding: 16px;
}

.catalog-results-toolbar {
  min-height: 40px;
  margin-bottom: 10px;
  font-size: 13px;
}

.catalog-page .product-grid {
  gap: 12px;
}

.catalog-page .product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

.catalog-page .product-card-image,
.product-detail-media,
.related-product-card img,
.products-category-card figure,
.products-category-card figure img {
  background: #fff !important;
}

.catalog-page .product-card-image img,
.product-detail-media img,
.related-product-card img,
.products-category-card figure img {
  mix-blend-mode: normal !important;
}

.catalog-page .product-card-image {
  height: 286px;
  padding: 8px;
  border-bottom: 1px solid #d9dee5;
}

.catalog-page .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-page .product-card-body {
  min-height: 188px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px 15px 15px;
}

.catalog-page .product-kicker {
  margin: 0;
  color: #d41737;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-page .product-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.catalog-page .product-card p {
  min-height: 38px;
  margin: 0;
  color: #526071;
  font-size: 12.5px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.catalog-page .product-card .card-button {
  width: max-content;
  min-height: 38px;
  margin-top: auto;
  padding: 0 14px;
}

.catalog-pagination {
  margin-top: 20px;
}

.catalog-proof-strip,
.products-proof-strip {
  overflow: hidden;
  background: #fff;
}

.catalog-proof-strip article,
.products-proof-strip article {
  min-height: 96px;
  padding: 15px;
}

.catalog-proof-strip .footer-icon,
.products-proof-strip .footer-icon {
  width: 38px;
  height: 38px;
}

.catalog-proof-strip strong,
.products-proof-strip strong {
  font-size: 13px;
}

.catalog-proof-strip p span,
.products-proof-strip p span {
  font-size: 12px;
  line-height: 1.4;
}

.product-breadcrumb {
  min-height: 28px;
  margin-bottom: 10px;
  font-size: 12px;
}

.product-detail-layout {
  grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.product-detail-media {
  min-height: 440px;
  padding: 18px;
}

.product-detail-media img {
  max-height: 402px;
}

.product-detail-copy {
  padding: 26px;
}

.product-detail-copy h1 {
  max-width: 620px;
  margin: 7px 0 11px;
  font-size: clamp(28px, 2.35vw, 34px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.product-detail-copy > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.detail-status {
  margin-top: 14px;
}

.detail-status span {
  padding: 6px 9px;
  border: 1px solid #d9dee5;
  border-radius: 999px;
  font-size: 11px;
  background: #f4f6f8;
}

.detail-check-list {
  gap: 7px;
  margin: 15px 0;
  font-size: 13px;
}

.detail-actions {
  gap: 8px;
}

.product-info-layout {
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 14px;
  margin-top: 14px;
}

.product-tabs-card,
.related-products {
  margin-top: 0;
  padding: 16px;
}

.product-tab-list button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 12px;
}

.product-tab-panel {
  color: #354253;
  font-size: 13px;
  line-height: 1.6;
}

.related-products h2 {
  margin-bottom: 12px;
  font-size: 19px;
}

.related-product-card {
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 10px;
  padding: 8px;
}

.related-product-card img {
  width: 66px;
  height: 66px;
}

.related-product-card strong {
  font-size: 12.5px;
  line-height: 1.25;
}

.products-category-grid {
  gap: 12px;
}

.products-category-card {
  min-height: 306px;
  grid-template-columns: 45% 55%;
  background: #fff;
}

.products-category-copy {
  padding: 19px 4px 19px 19px;
}

.products-category-copy > .footer-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.products-category-copy h2 {
  margin: 4px 0 7px;
  font-size: 20px;
}

.products-category-copy p,
.products-category-copy a {
  font-size: 12.5px;
}

.products-category-card figure {
  min-height: 278px;
  padding: 8px;
}

.products-category-card figure img {
  max-height: 270px;
}

.process-grid article,
.company-pillars-grid article {
  padding: 20px;
}

.process-grid article > span:first-child {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  font-size: 11px;
}

.process-grid article h3,
.company-pillars-grid article h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.process-grid article p,
.company-pillars-grid article p {
  margin: 0;
  color: #526071;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  background: #d71936;
}

.footer-inner {
  grid-template-columns: 1.25fr repeat(3, .8fr) 1.35fr;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 18px;
}

.footer-brand-block,
.footer-contact-block {
  grid-column: auto;
  min-width: 0;
  padding: 0;
  border: 0;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 154px;
  height: 56px;
}

.footer-brand-block p {
  margin: 10px 0 12px;
  font-size: 12px;
  line-height: 1.5;
}

.footer-link-block,
.footer-contact-block {
  gap: 6px;
}

.footer-link-block h2,
.footer-contact-block h2 {
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-link-block a,
.footer-contact-line {
  gap: 7px;
  font-size: 12px;
  line-height: 1.4;
}

.site-footer .footer-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.site-footer .footer-icon svg {
  width: 17px;
  height: 17px;
}

.footer-social {
  gap: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
}

.footer-subscribe {
  margin-top: 8px;
}

.footer-subscribe label,
.footer-subscribe > span {
  font-size: 11px;
}

.footer-subscribe input,
.footer-subscribe button {
  min-height: 38px;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .header-help {
    display: none;
  }

  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.15fr repeat(2, minmax(0, .8fr));
  }

  .footer-contact-block {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 92px;
  }

  .header-inner {
    height: 72px;
    min-height: 72px;
  }

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

  .catalog-page,
  .product-detail-mount {
    padding-top: 22px;
  }

  .catalog-category-strip {
    justify-content: flex-start;
  }

  .catalog-category-button {
    flex: 0 0 96px;
  }

  .product-detail-layout,
  .product-info-layout {
    grid-template-columns: 1fr;
  }

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

  .related-products h2 {
    grid-column: 1 / -1;
  }

  .related-product-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

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

  .footer-brand-block,
  .footer-contact-block {
    grid-column: 1 / -1;
  }

  .footer-contact-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .footer-contact-block h2,
  .footer-contact-block .footer-subscribe {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .catalog-intro-copy {
    padding: 18px;
  }

  .catalog-intro-copy h1 {
    font-size: 29px;
  }

  .catalog-page .product-card {
    display: block;
  }

  .catalog-page .product-card-image {
    height: 252px;
    border-right: 0;
    border-bottom: 1px solid #d9dee5;
  }

  .catalog-page .product-card-body {
    min-height: 174px;
    padding: 14px;
  }

  .product-detail-media {
    min-height: 330px;
    padding: 12px;
  }

  .product-detail-media img {
    max-height: 304px;
  }

  .product-detail-copy {
    padding: 20px 18px;
  }

  .product-detail-copy h1 {
    font-size: clamp(25px, 7.4vw, 30px);
  }

  .products-category-card {
    min-height: 0;
  }

  .products-category-card figure {
    min-height: 240px;
  }

  .related-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-contact-button {
    display: none;
  }

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

  .catalog-page,
  .product-detail-mount {
    padding-top: 14px;
  }

  .catalog-category-button {
    flex-basis: 88px;
  }

  .catalog-category-button span:last-child {
    font-size: 11px;
  }

  .catalog-page .product-card-image {
    height: 238px;
  }

  .catalog-page .product-card h3 {
    font-size: 16px;
  }

  .product-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-detail-media {
    min-height: 286px;
  }

  .product-detail-media img {
    max-height: 262px;
  }

  .detail-status {
    gap: 5px;
  }

  .detail-status span {
    font-size: 10.5px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 22px;
  }

  .footer-contact-block {
    display: flex;
  }

  .footer-bottom {
    grid-column: 1;
    gap: 8px;
  }
}

/* Final production pass: compact, consistent and integrated across every page. */
:root {
  --ui-ink: #121924;
  --ui-muted: #526071;
  --ui-line: #d7dde5;
  --ui-panel: #f1f3f5;
  --ui-panel-strong: #e9edf1;
  --ui-red: #d71937;
  --ui-red-dark: #b8102b;
}

body {
  color: var(--ui-ink);
  background: #fff;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
.eyebrow,
.nav-link,
.site-footer h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
}

.eyebrow {
  color: var(--ui-red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-mega-menu,
.nav-link::after {
  display: none !important;
}

.global-header {
  border-bottom: 1px solid var(--ui-line);
  box-shadow: none !important;
}

.nav-link {
  gap: 7px;
  min-height: 42px;
  padding-inline: 11px;
  color: #202a37;
  font-size: 13px;
  font-weight: 700;
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

.nav-link.is-active {
  color: var(--ui-red);
}

.header-search-icon,
.header-help-icon {
  color: var(--ui-ink);
}

.header-contact-button,
.header-quote,
.primary-button,
.detail-primary-action,
.contact-submit {
  background: var(--ui-red);
  border-color: var(--ui-red);
}

.header-contact-button:hover,
.header-quote:hover,
.primary-button:hover,
.detail-primary-action:hover,
.contact-submit:hover {
  background: var(--ui-red-dark);
  border-color: var(--ui-red-dark);
}

.header-contact-button,
.header-quote,
.header-search-icon,
.header-help-icon,
.primary-button,
.secondary-button,
.card-button,
.detail-primary-action,
.detail-whatsapp-action,
.contact-submit,
.pagination-button,
.catalog-filter-toggle,
.catalog-sort select,
.catalog-search input,
.catalog-sidebar,
.catalog-category-strip,
.catalog-page .product-card,
.product-detail-media,
.product-detail-copy,
.product-tabs-card,
.related-products,
.related-product-card,
.products-category-card,
.process-grid article,
.company-pillars-grid article,
.catalog-proof-strip,
.products-proof-strip,
.seo-service-list li {
  box-shadow: none !important;
}

.header-contact-button,
.header-quote,
.primary-button,
.secondary-button,
.card-button,
.detail-primary-action,
.detail-whatsapp-action,
.contact-submit,
.catalog-filter-toggle {
  border-radius: 4px;
  font-weight: 700;
}

.catalog-page,
.product-detail-mount {
  background: #f5f6f8;
}

.catalog-intro {
  min-height: 110px;
  border: 0;
  border-bottom: 1px solid var(--ui-line);
  border-radius: 0;
}

.catalog-intro-copy {
  padding: 18px 0;
}

.catalog-intro-copy h1 {
  margin: 4px 0 6px;
  font-size: clamp(29px, 2.6vw, 38px);
  line-height: 1.08;
}

.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ui-muted);
  font-size: 13.5px;
}

.catalog-category-strip {
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ui-line);
}

.catalog-category-button {
  min-height: 72px;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.catalog-category-button .footer-icon,
.products-category-copy > .footer-icon,
.catalog-proof-strip .footer-icon,
.products-proof-strip .footer-icon,
.company-pillars-grid .footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-red);
  background: #fdecef;
  border: 1px solid #f6cfd6;
  border-radius: 5px;
}

.catalog-category-button .footer-icon {
  width: 38px;
  height: 38px;
}

.catalog-category-button:hover,
.catalog-category-button.is-active {
  color: var(--ui-red);
  background: #fff6f7;
  border-color: #e74a61;
}

.catalog-layout {
  grid-template-columns: 226px minmax(0, 1fr);
  gap: 14px;
}

.catalog-sidebar {
  padding: 14px;
  background: #fff;
}

.catalog-filter-group {
  padding-block: 12px;
}

.catalog-filter-group label,
.catalog-filter-group button,
.catalog-sidebar summary {
  font-size: 12px;
}

.catalog-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-page .product-card {
  border: 1px solid var(--ui-line);
  background: #fff;
}

.catalog-page .product-card-image,
.product-detail-media,
.related-product-card img,
.products-category-card figure {
  overflow: hidden;
  background: var(--ui-panel) !important;
}

.catalog-page .product-card-image img,
.product-detail-media img,
.related-product-card img,
.products-category-card figure img {
  display: block;
  mix-blend-mode: multiply !important;
  filter: contrast(1.03) saturate(1.02);
}

.catalog-page .product-card-image {
  height: 270px;
  padding: 5px;
  position: relative;
}

.catalog-page .product-card-image img {
  position: absolute !important;
  inset: 7px !important;
  width: calc(100% - 14px) !important;
  height: calc(100% - 14px) !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  transform: scale(1.06);
}

.catalog-page .product-card-body {
  min-height: 162px;
  gap: 5px;
  padding: 13px 14px 14px;
}

.catalog-page .product-card h3 {
  min-height: 0;
  font-size: 16px;
  line-height: 1.22;
}

.catalog-page .product-card p {
  min-height: 36px;
  color: var(--ui-muted);
  font-size: 12px;
  line-height: 1.45;
}

.catalog-page .product-card .card-button {
  min-height: 35px;
  padding: 0 12px;
  color: var(--ui-red);
  background: transparent;
  border: 1px solid var(--ui-red);
  font-size: 12px;
}

.catalog-page .product-card .card-button:hover {
  color: #fff;
  background: var(--ui-red);
}

.catalog-results-toolbar {
  color: var(--ui-muted);
}

.catalog-sort select,
.catalog-search input,
.catalog-filter-toggle {
  border-color: var(--ui-line);
  border-radius: 5px;
  box-shadow: none;
}

.catalog-pagination {
  gap: 6px;
}

.pagination-button {
  width: 36px;
  min-height: 36px;
  color: var(--ui-ink);
  background: #fff;
  border: 1px solid var(--ui-line);
}

.pagination-button.is-active {
  color: #fff;
  background: var(--ui-red);
  border-color: var(--ui-red);
}

.catalog-proof-strip,
.products-proof-strip {
  margin-top: 28px;
  border: 1px solid var(--ui-line);
}

.catalog-proof-strip article,
.products-proof-strip article {
  min-height: 84px;
  padding: 12px;
}

.product-detail-page {
  max-width: 1240px;
  margin: 0 auto;
}

.product-breadcrumb {
  color: var(--ui-muted);
}

.product-detail-layout {
  grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr);
  gap: 14px;
}

.product-detail-media {
  min-height: 402px;
  padding: 12px;
  border: 1px solid var(--ui-line);
}

.product-detail-media img {
  width: 100%;
  height: 378px;
  max-height: none;
  object-fit: contain;
}

.product-detail-copy {
  padding: 23px 25px;
  border: 1px solid var(--ui-line);
}

.product-detail-copy h1 {
  max-width: 570px;
  margin: 6px 0 10px;
  font-size: clamp(25px, 2.05vw, 30px);
  line-height: 1.08;
}

.product-detail-copy > p {
  max-width: 650px;
  color: var(--ui-muted);
  font-size: 13.5px;
  line-height: 1.52;
}

.detail-status span {
  padding: 6px 8px;
  background: var(--ui-panel);
  border-radius: 4px;
}

.detail-check-list {
  margin: 13px 0;
  color: #354253;
}

.detail-primary-action,
.detail-whatsapp-action {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 12px;
}

.product-info-layout {
  grid-template-columns: minmax(0, 1fr) 250px;
}

.product-tabs-card,
.related-products {
  border: 1px solid var(--ui-line);
}

.product-tab-list {
  gap: 5px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--ui-line);
}

.product-tab-list button {
  color: #344153;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-radius: 4px;
}

.product-tab-list button.is-active {
  color: #fff;
  background: var(--ui-red);
  border-color: var(--ui-red);
}

.related-products h2 {
  font-size: 17px;
}

.related-product-card {
  border: 1px solid var(--ui-line);
  background: #fff;
}

.related-product-card img {
  width: 100%;
  height: 96px;
  object-fit: contain;
}

.related-product-card small {
  color: var(--ui-red);
  font-weight: 700;
}

.products-category-section {
  background: #f5f6f8;
}

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

.products-category-card {
  min-height: 286px;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ui-line);
}

.products-category-copy {
  z-index: 1;
  padding: 17px 3px 17px 17px;
}

.products-category-copy h2 {
  font-size: 19px;
  line-height: 1.15;
}

.products-category-copy p {
  color: var(--ui-muted);
  line-height: 1.48;
}

.products-category-card figure {
  min-height: 260px;
  padding: 4px;
}

.products-category-card figure img {
  width: 100%;
  height: 100%;
  max-height: none;
  transform: scale(1.08);
  object-fit: contain;
}

.process-section,
.seo-service-section,
.company-pillars-section {
  background: #fff;
}

.process-section .section-shell,
.seo-service-section,
.company-pillars-section .section-shell {
  padding-top: 54px;
  padding-bottom: 54px;
}

.process-grid,
.company-pillars-grid {
  gap: 12px;
}

.process-grid article,
.company-pillars-grid article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-top: 3px solid var(--ui-red);
}

.process-grid article > span:first-child {
  width: 34px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--ui-red);
  background: #fdecef;
  border-radius: 4px;
}

.process-grid article h3,
.company-pillars-grid article h3 {
  font-size: 17px;
}

.process-grid article p,
.company-pillars-grid article p {
  font-size: 12.5px;
  line-height: 1.48;
}

.seo-service-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.seo-service-section h2 {
  max-width: 680px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
}

.seo-service-section p:not(.eyebrow) {
  color: var(--ui-muted);
}

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

.seo-service-list li {
  min-height: 54px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--ui-line);
  border-left: 3px solid var(--ui-red);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.red-band {
  min-height: 146px;
  background: var(--ui-red);
}

.red-band .section-shell {
  min-height: 146px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.red-band h2 {
  max-width: 650px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.08;
}

.red-band a {
  min-width: 174px;
  color: var(--ui-red);
  background: #fff;
  border: 1px solid #fff;
}

.footer-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer input {
  color: #fff;
}

.footer-link-block a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .catalog-page .product-grid,
  .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-service-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    box-shadow: none !important;
  }

  .nav-link {
    min-height: 48px;
    border-bottom: 1px solid var(--ui-line);
  }

  .catalog-category-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .catalog-category-button {
    flex: 0 0 96px;
    scroll-snap-align: start;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    display: none;
  }

  .catalog-sidebar.is-open {
    display: block;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .catalog-intro-copy {
    padding: 16px 2px;
  }

  .catalog-intro-copy h1 {
    font-size: 28px;
  }

  .catalog-page .product-grid,
  .products-category-grid,
  .process-grid,
  .company-pillars-grid,
  .seo-service-list {
    grid-template-columns: 1fr;
  }

  .catalog-page .product-card-image {
    height: 258px;
  }

  .catalog-page .product-card-body {
    min-height: 150px;
  }

  .product-detail-media {
    min-height: 300px;
  }

  .product-detail-media img {
    max-height: 276px;
  }

  .product-detail-copy {
    padding: 18px 16px;
  }

  .product-detail-copy h1 {
    font-size: clamp(23px, 7vw, 27px);
  }

  .product-info-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .product-tabs-card,
  .related-products {
    min-width: 0;
  }

  .product-tabs-card {
    order: 1;
  }

  .related-products {
    order: 2;
  }

  .product-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .product-tab-list button {
    flex: 0 0 auto;
  }

  .products-category-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 218px auto;
  }

  .products-category-card figure {
    grid-row: 1;
    min-height: 0;
    height: 218px;
    padding: 8px 12px 2px;
    background: #f7f8fa;
  }

  .products-category-card figure img {
    transform: none;
  }

  .products-category-copy {
    grid-row: 2;
    padding: 17px;
    border-top: 1px solid var(--ui-line);
  }

  .process-section .section-shell,
  .seo-service-section,
  .company-pillars-section .section-shell {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .red-band .section-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .red-band a {
    width: max-content;
  }
}

/* Restore the established brand scale and shared page grid. */
@media (min-width: 861px) {
  .global-header {
    padding-bottom: 42px;
    isolation: isolate;
  }

  .header-inner {
    height: 92px;
    min-height: 92px;
    grid-template-columns: 158px minmax(0, 1fr) auto;
  }

  .brand,
  .brand img {
    width: 134px;
    height: 134px;
    flex: 0 0 134px;
  }

  .brand {
    align-self: start;
    overflow: visible;
  }

  .brand img {
    aspect-ratio: 1;
    object-fit: contain;
  }

  .global-header + main {
    position: relative;
    z-index: 0;
  }
}

.catalog-page {
  padding-right: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
  padding-left: max(var(--pad), calc((100vw - var(--page)) / 2 + var(--pad)));
}

.footer-brand-block p {
  font-size: 13.5px;
  line-height: 1.55;
}

.footer-link-block h2,
.footer-contact-block h2 {
  font-size: 14px;
}

.footer-link-block a,
.footer-contact-line {
  font-size: 13.5px;
  line-height: 1.45;
}

.footer-subscribe label {
  font-size: 13px;
}

.footer-subscribe label span,
.footer-subscribe > span {
  font-size: 11.5px;
}

.footer-subscribe input,
.footer-subscribe button {
  font-size: 13px;
}

.footer-bottom {
  font-size: 12px;
}

/* Restored footer composition: assurance band, large brand and readable columns. */
.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #f12b42 0%, #df1937 52%, #c7102d 100%);
}

.footer-benefits {
  background: linear-gradient(90deg, #e41436 0%, #d20f31 52%, #c30c2b 100%);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-benefits-inner {
  width: min(100%, 1680px);
  min-height: 134px;
  margin: 0 auto;
  padding: 22px clamp(30px, 5vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.footer-benefits article {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-benefits article + article {
  border-left: 1px solid rgba(255,255,255,.28);
}

.footer-benefit-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.13);
}

.footer-benefit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-benefits strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner {
  width: min(100%, 1680px);
  max-width: 1680px;
  grid-template-columns: minmax(290px, 1.2fr) minmax(180px, .78fr) minmax(210px, .86fr) minmax(170px, .7fr) minmax(330px, 1.15fr);
  gap: clamp(26px, 2.7vw, 48px);
  padding: 50px clamp(30px, 5vw, 84px) 26px;
}

.footer-brand-block {
  min-height: 392px;
  padding-right: clamp(25px, 2.4vw, 46px);
  border-right: 1px solid rgba(255,255,255,.25);
}

.footer-logo {
  width: 248px;
  height: auto;
  max-width: 100%;
  margin: 0 0 22px;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 335px;
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  line-height: 1.9;
}

.footer-social {
  gap: 14px;
  margin-top: 27px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  color: #d71937;
  box-shadow: none;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link-block,
.footer-contact-block {
  gap: 18px;
}

.footer-link-block h2,
.footer-contact-block h2 {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1;
}

.site-footer h2::after {
  bottom: -12px;
  width: 34px;
}

.footer-link-block a,
.footer-contact-line {
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer .footer-icon,
.site-footer .footer-icon svg {
  width: 23px;
  height: 23px;
}

.footer-contact-block {
  min-height: 392px;
  padding-left: clamp(25px, 2.4vw, 46px);
  border-left: 1px solid rgba(255,255,255,.25);
}

.footer-contact-line {
  margin-bottom: 0;
  align-items: start;
}

.footer-subscribe {
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
}

.footer-subscribe label {
  font-size: 17px;
}

.footer-subscribe label span {
  font-size: 13px;
}

.footer-subscribe > span {
  font-size: 12px;
}

.footer-subscribe div {
  grid-template-columns: minmax(0, 1fr) 124px;
}

.footer-subscribe input,
.footer-subscribe button {
  height: 48px;
  min-height: 48px;
  font-size: 14px;
  box-shadow: none;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 24px;
  font-size: 12px;
}

@media (max-width: 1440px) {
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-row: span 2;
  }

  .footer-contact-block {
    grid-column: 2 / -1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .footer-contact-block h2,
  .footer-contact-block .footer-subscribe {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .footer-benefits-inner {
    min-height: 108px;
    padding: 15px 18px;
  }

  .footer-benefits article {
    min-height: 64px;
    gap: 10px;
  }

  .footer-benefit-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .footer-benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .footer-benefits strong {
    font-size: 13px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 38px 24px 22px;
  }

  .footer-brand-block,
  .footer-contact-block {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .footer-brand-block {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .footer-logo {
    width: 210px;
  }
}

@media (max-width: 560px) {
  .footer-benefits-inner {
    padding: 12px 8px;
  }

  .footer-benefits article {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }

  .footer-benefit-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .footer-benefits strong {
    font-size: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 22px 22px;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-brand-block p,
  .footer-link-block a,
  .footer-contact-line {
    font-size: 14px;
  }

  .footer-contact-block {
    display: flex;
  }

  .footer-bottom {
    grid-column: 1;
    flex-direction: column;
  }
}

/* Simonetta supplied icon system and shared interface refinement. */
.header-icon img,
.header-search-icon img,
.header-help-icon img,
.header-contact-button img,
.footer-icon img,
.footer-social img,
.footer-benefit-icon img,
.contact-hours-icon img,
.contact-form-heading-icon img,
.contact-security-note img,
.contact-form-actions button img,
.contact-trust-item img,
.whatsapp-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  overflow: hidden;
}

.site-nav .nav-link .header-icon img {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  .site-nav {
    height: auto;
    max-height: calc(100dvh - var(--header));
    grid-auto-rows: max-content;
    align-content: start;
    justify-content: stretch;
    gap: 0;
  }

  .site-nav .nav-link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .site-nav .nav-link .header-icon,
  .site-nav .nav-link .header-icon img {
    width: 20px;
    height: 20px;
  }
}

.footer-benefits {
  border: 0;
  background: linear-gradient(90deg, #15181c 0%, #080a0d 100%);
}

.footer-benefits-inner {
  width: min(100%, 1400px);
  min-height: 90px;
  padding: 13px 24px;
}

.footer-benefits article {
  min-height: 62px;
  gap: 14px;
}

.footer-benefit-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: transparent;
}

.footer-benefit-icon img {
  width: 46px;
  height: 46px;
}

.footer-benefits strong {
  font-size: 14px;
  line-height: 1.25;
}

.site-footer {
  color: #fff;
  background: linear-gradient(180deg, #d71a29 0%, #ca1524 68%, #b3121f 100%);
}

.footer-inner {
  width: min(100%, 1400px);
  max-width: 1400px;
  grid-template-columns: 1.2fr .8fr .9fr .72fr 1.25fr;
  gap: 28px;
  padding: 34px 24px 18px;
}

.footer-brand-block,
.footer-contact-block {
  min-height: 0;
}

.footer-brand-block {
  padding-right: 26px;
}

.footer-logo {
  width: 134px;
  height: 134px;
  margin: 0 0 18px;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 285px;
  font-size: 13px;
  line-height: 1.65;
}

.footer-social {
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  box-shadow: none;
}

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

.footer-link-block,
.footer-contact-block {
  gap: 12px;
}

.footer-link-block h2,
.footer-contact-block h2 {
  margin: 0 0 16px;
  font-size: 13px;
}

.footer-link-block a,
.footer-contact-line {
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.35;
}

.site-footer .footer-icon,
.site-footer .footer-icon img {
  width: 18px;
  height: 18px;
}

.footer-contact-block {
  padding-left: 24px;
}

.footer-subscribe {
  gap: 7px;
  margin-top: 8px;
  padding-top: 15px;
}

.footer-subscribe label {
  font-size: 14px;
}

.footer-subscribe label span {
  font-size: 11px;
}

.footer-subscribe div {
  grid-template-columns: minmax(0, 1fr) 96px;
}

.footer-subscribe input,
.footer-subscribe button {
  min-height: 42px;
  height: 42px;
  font-size: 12px;
  box-shadow: none;
}

.footer-bottom {
  margin-top: 4px;
  padding-top: 15px;
  font-size: 10.5px;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
}

.contact-page-section {
  padding: 38px 0 0;
  background:
    radial-gradient(circle, rgba(208, 17, 48, .11) 1px, transparent 1.2px) calc(100% - 36px) 44px / 13px 13px no-repeat,
    linear-gradient(112deg, #fafbfc 0 40%, #fff 40% 100%);
}

.contact-page-section::before {
  width: 440px;
  height: 440px;
  left: -330px;
  top: 140px;
  border: 68px solid rgba(208, 17, 48, .045);
}

.contact-commercial-layout {
  width: min(var(--page), calc(100% - (2 * var(--pad))));
  max-width: var(--page);
  grid-template-columns: minmax(320px, .72fr) minmax(620px, 1.35fr);
  gap: 54px;
  align-items: start;
}

.contact-showcase {
  min-height: 0;
  padding: 18px 0 34px;
  color: #111923;
  background: none;
}

.contact-showcase::before,
.contact-showcase::after {
  display: none;
}

.contact-showcase-content {
  display: block;
  max-width: 500px;
  min-height: 0;
  padding: 0;
}

.contact-showcase .eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
}

.contact-showcase h1 {
  max-width: 12ch;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.02;
}

.contact-title-rule {
  width: 40px;
  height: 2px;
  margin: 20px 0;
}

.contact-showcase-content > p:not(.eyebrow) {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.65;
}

.contact-hours-card {
  width: min(100%, 300px);
  grid-template-columns: 54px 1fr;
  gap: 14px;
  margin-top: 26px;
  padding: 15px 18px;
  border-radius: 5px;
  box-shadow: none;
}

.contact-hours-icon,
.contact-form-heading-icon {
  width: 48px;
  height: 48px;
  background: transparent;
}

.contact-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 430px;
  margin-top: 22px;
}

.contact-trust-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 12px;
  border-right: 1px solid #e1e6eb;
  text-align: center;
}

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

.contact-trust-item img {
  width: 48px;
  height: 48px;
}

.contact-trust-item span {
  color: #3e4956;
  font-size: 12px;
  line-height: 1.35;
}

.contact-form.contact-commercial-form {
  gap: 16px 22px;
  padding: 26px 28px;
  border-radius: 7px;
  box-shadow: none;
}

.contact-form-heading {
  grid-template-columns: 52px 1fr;
  gap: 14px;
  margin-bottom: 2px;
}

.contact-form-heading h2 {
  font-size: 22px;
}

.contact-form-heading p {
  font-size: 12px;
}

.contact-form.contact-commercial-form label {
  gap: 7px;
  font-size: 10.5px;
}

.contact-form.contact-commercial-form input,
.contact-form.contact-commercial-form select {
  min-height: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 4px;
}

.contact-form.contact-commercial-form textarea {
  min-height: 112px;
  padding: 12px 14px;
  border-radius: 4px;
}

.contact-form-actions {
  align-items: center;
  margin-top: 0;
}

.contact-security-note span {
  width: 22px;
  height: 22px;
}

.contact-form-actions button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  box-shadow: none;
}

.contact-form-actions button span {
  width: 18px;
  height: 18px;
}

@media (min-width: 861px) {
  .global-header {
    position: relative;
    z-index: 60;
    padding-bottom: 24px;
    background: #fff;
  }

  .header-inner {
    width: min(1460px, calc(100% - 64px));
    height: 92px;
    min-height: 92px;
    grid-template-columns: 150px minmax(520px, 1fr) auto;
    border: 1px solid #e1e6ec;
    border-top: 0;
    box-shadow: none;
  }

  .brand,
  .brand img {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
    object-fit: contain;
  }

  .brand {
    align-self: start;
    z-index: 3;
  }

  .site-nav {
    justify-content: center;
    gap: clamp(20px, 2vw, 34px);
  }

  .nav-link {
    min-height: 92px;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
  }

  .header-icon {
    width: 18px;
    height: 18px;
  }

  .nav-link[aria-current="page"] {
    color: var(--red);
  }

  .header-actions {
    gap: 14px;
  }

  .header-search-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #dfe4ea;
    border-radius: 50%;
    background: #fff;
  }

  .header-search-icon img {
    width: 22px;
    height: 22px;
  }

  .header-help {
    min-width: 220px;
    min-height: 50px;
    grid-template-columns: 42px auto;
    column-gap: 12px;
    padding: 0 8px 0 0;
    border-left: 1px solid #dfe4ea;
    background: transparent;
  }

  .header-help-icon {
    grid-row: 1 / 4;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
  }

  .header-help-icon img {
    width: 20px;
    height: 20px;
  }

  .header-help-label,
  .header-help small {
    font-size: 10px;
    line-height: 1;
  }

  .header-help strong {
    font-size: 16px;
    line-height: 1;
  }

  .header-contact-button {
    min-height: 48px;
    height: 48px;
    gap: 12px;
    padding: 0 22px;
    border-radius: 5px;
    box-shadow: none;
  }

  .header-contact-button span,
  .header-contact-button img {
    display: block;
    width: 15px;
    height: 15px;
  }

  .header-quote {
    display: none;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 118px minmax(430px, 1fr) auto;
  }

  .brand,
  .brand img {
    width: 112px;
    height: 112px;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-link {
    gap: 5px;
    font-size: 12px;
  }

  .header-help {
    min-width: 190px;
  }

  .header-contact-button {
    padding: 0 16px;
    font-size: 11px;
  }

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

  .footer-brand-block {
    grid-row: span 2;
  }

  .footer-contact-block {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  .global-header {
    padding-bottom: 20px;
  }

  .header-inner {
    min-height: 90px;
    height: 90px;
  }

  .brand,
  .brand img {
    width: 112px;
    height: 112px;
    object-fit: contain;
  }

  .header-quote {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 5px;
    box-shadow: none;
  }

  .contact-page-section {
    padding: 32px 0 0;
  }

  .contact-commercial-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-showcase {
    padding-bottom: 0;
  }

  .contact-showcase-content {
    max-width: 680px;
  }

  .contact-showcase h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px 22px 18px;
  }

  .footer-brand-block,
  .footer-contact-block,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-contact-block {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .contact-page-section {
    padding-inline: 0;
  }

  .contact-trust-item {
    padding-inline: 7px;
  }

  .contact-trust-item img {
    width: 40px;
    height: 40px;
  }

  .contact-trust-item span {
    font-size: 10.5px;
  }

  .contact-form.contact-commercial-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .contact-commercial-form label,
  .contact-form-heading,
  .contact-form-actions {
    grid-column: 1;
  }

  .contact-form-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-benefits-inner {
    min-height: 86px;
    padding-inline: 12px;
  }

  .footer-benefits article {
    gap: 7px;
  }

  .footer-benefit-icon,
  .footer-benefit-icon img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .footer-benefits strong {
    font-size: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 18px 16px;
  }

  .footer-brand-block,
  .footer-contact-block,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-logo {
    width: 124px;
    height: 124px;
  }

  .footer-subscribe div {
    grid-template-columns: minmax(0, 1fr) 92px;
  }
}

/* Final alignment pass: stable header and clean supplied icon treatment. */
.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background: #fff;
}

.global-header::before,
.global-header::after,
.header-inner::before,
.header-inner::after,
.header-actions::before,
.header-actions::after,
.header-help::before,
.header-help::after {
  display: none !important;
  content: none !important;
}

.header-inner {
  overflow: visible;
  border: 0 !important;
  box-shadow: none !important;
}

.brand {
  align-self: start;
  overflow: visible;
}

.brand img {
  display: block;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  border: 0;
}

.header-search-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  box-sizing: border-box;
  padding: 0;
  line-height: 0;
}

.header-help {
  border: 0 !important;
  box-shadow: none !important;
}

.contact-hours-icon,
.contact-form-heading-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--red);
}

.contact-hours-icon img,
.contact-form-heading-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.contact-trust-item img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.footer-benefits article {
  position: relative;
  border: 0 !important;
  overflow: visible;
}

.footer-benefits article + article::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 46px;
  content: "";
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .24);
}

.footer-benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  padding: 11px;
  border-radius: 50%;
  background: var(--red);
}

.footer-benefit-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (min-width: 861px) {
  .global-header {
    padding: 0 0 24px;
  }

  .header-inner {
    width: min(1400px, calc(100% - 48px));
    height: 94px;
    min-height: 94px;
    grid-template-columns: 150px minmax(500px, 1fr) auto;
  }

  .brand,
  .brand img {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
  }

  .site-nav {
    min-width: 0;
    gap: clamp(18px, 1.8vw, 30px);
  }

  .nav-link {
    min-height: 94px;
  }

  .header-actions {
    gap: 18px;
  }

  .header-search-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    min-height: 50px;
    flex: 0 0 50px;
    border: 1px solid #d9e0e7;
    border-radius: 50%;
  }

  .header-search-icon img {
    width: 22px;
    height: 22px;
  }

  .header-help {
    display: grid !important;
    min-width: 214px;
    min-height: 50px;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    padding: 0;
  }

  .header-contact-button {
    min-width: 168px;
    justify-content: center;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 116px minmax(410px, 1fr) auto;
  }

  .brand,
  .brand img {
    width: 112px;
    height: 112px;
  }

  .site-nav {
    gap: 12px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-search-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    min-height: 46px;
    flex-basis: 46px;
  }

  .header-help {
    display: none !important;
    min-width: 188px;
  }

  .header-contact-button {
    min-width: 142px;
  }
}

@media (max-width: 860px) {
  .global-header {
    padding: 0 0 20px;
  }

  .header-inner {
    width: 100%;
    height: 92px;
    min-height: 92px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    padding: 0 14px;
  }

  .brand,
  .brand img {
    width: 112px;
    height: 112px;
  }

  .header-actions {
    height: 92px;
    gap: 8px;
  }

  .header-search-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
  }

  .header-search-icon img {
    width: 21px;
    height: 21px;
  }

  .header-quote {
    min-width: 96px;
    justify-content: center;
    padding-inline: 16px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .footer-benefits article + article::before {
    height: 40px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 12px;
  }

  .brand,
  .brand img {
    width: 100px;
    height: 100px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-search-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }

  .header-quote {
    min-width: 84px;
    padding-inline: 12px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* Catalog reference layout */
.catalog-page {
  width: min(var(--page), calc(100% - (2 * var(--pad))));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0 58px;
  background: #fff;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 48px;
  align-items: end;
  min-height: 0;
  margin: 0;
  padding: 0 14px 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.catalog-intro::before,
.catalog-intro::after {
  display: none;
}

.catalog-intro-copy {
  width: auto;
  max-width: 720px;
  padding: 0;
}

.catalog-intro-copy .eyebrow {
  margin: 0 0 5px;
  color: #ed1b2f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.catalog-intro-copy h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.catalog-intro-copy h1 em {
  color: #ed1b2f;
  font-style: normal;
}

.catalog-intro-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #697180;
  font-size: 15px;
  line-height: 1.55;
}

.catalog-intro-line {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 18px;
  background: #ed1b2f;
}

.catalog-main-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  height: 54px;
  min-height: 54px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid #cdd5df;
  border-radius: 8px;
  background: #fff;
}

.catalog-main-search input {
  grid-column: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font: inherit;
}

.catalog-main-search .sr-only {
  position: absolute;
}

.catalog-main-search input::placeholder {
  color: #737d8e;
}

.catalog-main-search svg,
.catalog-main-search img {
  grid-column: 2;
  width: 21px;
  height: 21px;
  max-width: 21px;
  max-height: 21px;
  object-fit: contain;
  justify-self: end;
  flex: 0 0 21px;
}

.catalog-main-search svg {
  fill: none;
  stroke: #667085;
  stroke-width: 1.8;
}

.catalog-category-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0;
  min-height: 124px;
  margin: 0 0 16px;
  padding: 0 10px;
  overflow: hidden;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.catalog-category-button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 122px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  transform: none;
}

.catalog-category-button:hover,
.catalog-category-button.is-active {
  border-bottom-color: #ed1b2f;
  background: transparent;
  box-shadow: none;
  color: #ed1b2f;
  transform: none;
}

.catalog-category-icon {
  display: flex;
  width: 50px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.catalog-category-icon img {
  display: block;
  width: 48px;
  height: 50px;
  object-fit: contain;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 112px;
  padding: 18px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.catalog-sidebar-title {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e8ee;
}

.catalog-sidebar-title > span {
  display: none;
}

.catalog-sidebar-title strong {
  max-width: 126px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.catalog-clear {
  justify-self: end;
  white-space: nowrap;
  color: #ed1b2f;
  font-size: 11px;
  font-weight: 700;
}

.catalog-filter-block {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid #e4e8ee;
}

.catalog-filter-block:last-of-type {
  border-bottom: 0;
}

.catalog-search {
  gap: 8px;
}

.catalog-search span,
.catalog-filter-block h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-search input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #ccd4df;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.catalog-check {
  min-height: 34px;
  padding: 2px 0;
  color: #4f5b6b;
  font-size: 12px;
}

.catalog-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #ed1b2f;
}

.catalog-sidebar-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 7px;
  background: #111d2b;
  color: #fff;
}

.catalog-sidebar-note strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.catalog-sidebar-note p {
  margin: 8px 0 0;
  color: #dbe1e8;
  font-size: 12px;
  line-height: 1.55;
}

.catalog-results-toolbar {
  min-height: 48px;
  margin: 0;
  padding: 0 4px;
  align-items: center;
}

.catalog-results-toolbar p,
.catalog-results-toolbar label {
  color: #566174;
  font-size: 12px;
}

.catalog-results-toolbar select {
  min-width: 170px;
  height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid #d4dbe4;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: none;
}

.catalog-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-page .product-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transform: none;
}

.catalog-page .product-card:hover {
  border-color: #c7d0dc;
  box-shadow: none;
  transform: none;
}

.catalog-page .product-card-image {
  height: 220px;
  padding: 12px;
  background: #fff;
}

.catalog-page .product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: none;
}

.catalog-page .product-card:hover .product-card-image img {
  transform: none;
}

.catalog-page .product-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 15px 16px 16px;
  border-top: 0;
}

.catalog-page .product-kicker {
  margin: 0;
  color: #ed1b2f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-page .product-card h3 {
  margin: 7px 0 8px;
  color: #111827;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.28;
}

.catalog-page .product-card p {
  display: -webkit-box;
  min-height: 58px;
  margin: 0 0 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #596477;
  font-size: 13px;
  line-height: 1.5;
}

.catalog-page .card-button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 14px;
  border: 1px solid #ed1b2f;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: #ed1b2f;
  font-size: 12px;
  font-weight: 750;
}

.catalog-page .card-button:hover {
  background: #ed1b2f;
  box-shadow: none;
  color: #fff;
  transform: none;
}

.catalog-pagination {
  gap: 8px;
  margin-top: 22px;
}

.catalog-pagination button {
  width: 38px;
  height: 38px;
  border: 1px solid #d6dde6;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: #111827;
}

.catalog-pagination button.is-active,
.catalog-pagination button:hover {
  border-color: #ed1b2f;
  background: #ed1b2f;
  color: #fff;
}

.catalog-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding: 20px 18px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.catalog-proof-item {
  min-height: 72px;
  padding: 0 18px;
}

.catalog-proof-item + .catalog-proof-item {
  border-left: 1px solid #e1e6ed;
}

.catalog-proof-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #fff0f2;
}

.catalog-proof-item strong {
  color: #111827;
  font-size: 13px;
}

.catalog-proof-item p {
  margin-top: 4px;
  color: #667085;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .catalog-page {
    width: min(var(--page), calc(100% - (2 * var(--pad))));
  }

  .catalog-category-strip {
    grid-template-columns: repeat(9, minmax(96px, 1fr));
    overflow-x: auto;
  }

  .catalog-layout {
    grid-template-columns: 224px minmax(0, 1fr);
  }

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

@media (max-width: 860px) {
  .catalog-page {
    width: min(var(--page), calc(100% - (2 * var(--pad))));
    padding-top: 28px;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: 4px;
  }

  .catalog-intro-copy h1 {
    font-size: 38px;
  }

  .catalog-category-strip {
    margin-top: 4px;
    padding-inline: 0;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    display: none;
  }

  .catalog-sidebar.is-open {
    display: block;
  }

  .catalog-mobile-filter-toggle {
    display: inline-flex;
  }

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

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

  .catalog-proof-item:nth-child(3) {
    border-left: 0;
  }

  .catalog-proof-item:nth-child(n + 3) {
    border-top: 1px solid #e1e6ed;
    padding-top: 16px;
  }
}

@media (max-width: 560px) {
  .catalog-page {
    width: min(var(--page), calc(100% - (2 * var(--pad))));
    padding: 22px 0 36px;
  }

  .catalog-intro-copy h1 {
    font-size: 34px;
  }

  .catalog-intro-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .catalog-category-strip {
    grid-template-columns: repeat(9, 92px);
    min-height: 108px;
  }

  .catalog-category-button {
    min-height: 106px;
    font-size: 11px;
  }

  .catalog-category-icon,
  .catalog-category-icon img {
    width: 42px;
    height: 44px;
  }

  .catalog-results-toolbar {
    align-items: flex-start;
  }

  .catalog-results-toolbar label {
    width: 100%;
  }

  .catalog-results-toolbar select {
    width: 100%;
  }

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

  .catalog-page .product-card-image {
    height: 240px;
  }

  .catalog-page .product-card-body {
    min-height: 224px;
  }

  .catalog-proof-strip {
    grid-template-columns: 1fr;
    padding: 8px 16px;
  }

  .catalog-proof-item,
  .catalog-proof-item:nth-child(n + 3) {
    border-top: 0;
    border-left: 0;
    padding: 14px 0;
  }

  .catalog-proof-item + .catalog-proof-item {
    border-top: 1px solid #e1e6ed;
  }
}

/* Nosotros: cuerpo editorial B2B. El header y el footer conservan sus estilos globales. */
.company-showcase-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #080d13;
}

.company-showcase-hero__media,
.company-showcase-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.company-showcase-hero__media {
  object-fit: cover;
  object-position: center;
}

.company-showcase-hero__shade {
  background: linear-gradient(90deg, rgba(3, 8, 13, .98) 0%, rgba(3, 8, 13, .92) 38%, rgba(3, 8, 13, .48) 61%, rgba(3, 8, 13, .08) 100%);
}

.company-showcase-hero__inner,
.company-showcase-ally__inner,
.company-showcase-lines,
.company-showcase-trust__inner,
.company-showcase-cta__inner {
  position: relative;
  width: min(var(--page), calc(100% - (2 * var(--pad))));
  margin-inline: auto;
}

.company-showcase-hero__inner {
  display: flex;
  align-items: center;
  min-height: 620px;
  padding-block: 64px 54px;
}

.company-showcase-hero__copy {
  width: min(710px, 62%);
}

.company-showcase-kicker {
  margin: 0 0 12px;
  color: #e41d3d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-showcase-hero h1,
.company-showcase-ally h2,
.company-showcase-section-heading h2,
.company-showcase-cta h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.company-showcase-hero h1 {
  max-width: 690px;
  font-size: 54px;
  line-height: 1.02;
}

.company-showcase-hero h1 em,
.company-showcase-ally h2 em {
  color: #e41d3d;
  font-style: normal;
}

.company-showcase-lead {
  max-width: 650px;
  margin: 22px 0 28px;
  padding-left: 18px;
  border-left: 3px solid #e41d3d;
  color: #e5e8ec;
  font-size: 17px;
  line-height: 1.62;
}

.company-showcase-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 30px;
}

.company-showcase-values article {
  min-width: 0;
  padding: 0 17px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.company-showcase-values article:first-child {
  padding-left: 0;
  border-left: 0;
}

.company-showcase-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #e41d3d;
}

.company-showcase-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.company-showcase-values strong,
.company-showcase-values small {
  display: block;
}

.company-showcase-values strong {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.25;
}

.company-showcase-values small {
  margin-top: 5px;
  color: #bfc5cd;
  font-size: 12px;
  line-height: 1.45;
}

.company-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.company-showcase-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.company-showcase-button--primary {
  border-color: #e20e29;
  color: #fff;
  background: #e20e29;
}

.company-showcase-button--ghost {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

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

.company-showcase-ally {
  padding: 70px 0;
  background: #fff;
}

.company-showcase-ally__inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 58px;
}

.company-showcase-ally h2,
.company-showcase-section-heading h2 {
  color: #101722;
  font-size: 42px;
  line-height: 1.08;
}

.company-showcase-ally__copy > p:not(.company-showcase-kicker) {
  max-width: 610px;
  margin: 20px 0 28px;
  color: #485465;
  font-size: 16px;
  line-height: 1.68;
}

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

.company-showcase-stats article {
  padding: 0 18px;
  border-left: 1px solid #dfe4ea;
}

.company-showcase-stats article:first-child {
  padding-left: 0;
  border-left: 0;
}

.company-showcase-stats strong,
.company-showcase-stats span {
  display: block;
}

.company-showcase-stats strong {
  color: #d71936;
  font-size: 23px;
  line-height: 1.15;
}

.company-showcase-stats span {
  margin-top: 7px;
  color: #303b4a;
  font-size: 12px;
  line-height: 1.45;
}

.company-showcase-ally__media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #e9edf1;
}

.company-showcase-ally__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.company-showcase-ally__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #fff;
  background: #c90f28;
}

.company-showcase-ally__media figcaption .company-showcase-icon {
  flex: 0 0 auto;
  color: #fff;
}

.company-showcase-ally__media figcaption strong {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.35;
}

.company-showcase-lines {
  padding-block: 62px 66px;
}

.company-showcase-section-heading {
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
}

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

.company-showcase-line {
  display: grid;
  min-width: 0;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid #e1e5ea;
  border-radius: 6px;
  color: #101722;
  background: #fff;
  text-decoration: none;
}

.company-showcase-line figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f5f6f7;
}

.company-showcase-line figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.company-showcase-line > div {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  padding: 20px;
}

.company-showcase-line h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.company-showcase-line p {
  margin: 9px 0 16px;
  color: #586272;
  font-size: 13px;
  line-height: 1.55;
}

.company-showcase-line span {
  margin-top: auto;
  color: #d71936;
  font-size: 13px;
  font-weight: 800;
}

.company-showcase-trust {
  color: #fff;
  background: #a9081f;
}

.company-showcase-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 106px;
  align-items: stretch;
}

.company-showcase-trust article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 22px 26px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.company-showcase-trust article:first-child {
  border-left: 0;
}

.company-showcase-trust .company-showcase-icon {
  flex: 0 0 auto;
  color: #fff;
}

.company-showcase-trust strong {
  font-size: 14px;
  line-height: 1.35;
}

.company-showcase-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #090e14;
}

.company-showcase-cta::after {
  position: absolute;
  top: -35%;
  right: 14%;
  width: 150px;
  height: 180%;
  content: "";
  background: #b20c24;
  transform: skewX(-20deg);
  opacity: .72;
}

.company-showcase-cta__inner {
  z-index: 1;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 42px;
}

.company-showcase-cta__inner > div {
  max-width: 760px;
}

.company-showcase-cta h2 {
  max-width: 700px;
  font-size: 36px;
  line-height: 1.08;
}

.company-showcase-cta__inner p:last-child {
  margin: 12px 0 0;
  color: #cdd2d8;
  font-size: 14px;
}

.company-showcase-cta .company-showcase-button {
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .company-showcase-hero h1 {
    font-size: 46px;
  }

  .company-showcase-hero__copy {
    width: min(680px, 70%);
  }

  .company-showcase-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .company-showcase-values article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .company-showcase-ally__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

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

@media (max-width: 820px) {
  .company-showcase-hero,
  .company-showcase-hero__inner {
    min-height: 640px;
  }

  .company-showcase-hero__media {
    object-position: 70% center;
  }

  .company-showcase-hero__shade {
    background: linear-gradient(90deg, rgba(3, 8, 13, .98) 0%, rgba(3, 8, 13, .9) 64%, rgba(3, 8, 13, .55) 100%);
  }

  .company-showcase-hero__copy {
    width: 100%;
    max-width: 650px;
  }

  .company-showcase-hero h1 {
    max-width: 580px;
    font-size: 42px;
  }

  .company-showcase-ally__inner {
    grid-template-columns: 1fr;
  }

  .company-showcase-ally__media {
    min-height: 380px;
  }

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

  .company-showcase-trust article:nth-child(3) {
    border-left: 0;
  }

  .company-showcase-trust article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }
}

@media (max-width: 620px) {
  .company-showcase-hero,
  .company-showcase-hero__inner {
    min-height: 740px;
  }

  .company-showcase-hero__inner {
    align-items: flex-end;
    padding-block: 46px 38px;
  }

  .company-showcase-hero__media {
    object-position: 66% center;
    opacity: .62;
  }

  .company-showcase-hero__shade {
    background: linear-gradient(180deg, rgba(3, 8, 13, .2) 0%, rgba(3, 8, 13, .86) 36%, rgba(3, 8, 13, .98) 100%);
  }

  .company-showcase-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .company-showcase-lead {
    margin-block: 18px 24px;
    font-size: 15px;
  }

  .company-showcase-values {
    gap: 18px 0;
  }

  .company-showcase-values article,
  .company-showcase-values article:nth-child(3) {
    padding: 0 12px;
  }

  .company-showcase-values article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .company-showcase-values small {
    display: none;
  }

  .company-showcase-actions,
  .company-showcase-actions .company-showcase-button {
    width: 100%;
  }

  .company-showcase-ally {
    padding: 48px 0;
  }

  .company-showcase-ally h2,
  .company-showcase-section-heading h2 {
    font-size: 31px;
  }

  .company-showcase-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .company-showcase-stats article,
  .company-showcase-stats article:first-child {
    padding: 0 0 0 16px;
    border-left: 2px solid #d71936;
  }

  .company-showcase-ally__media,
  .company-showcase-ally__media img {
    min-height: 320px;
  }

  .company-showcase-lines {
    padding-block: 46px;
  }

  .company-showcase-section-heading {
    text-align: left;
  }

  .company-showcase-lines__grid,
  .company-showcase-trust__inner {
    grid-template-columns: 1fr;
  }

  .company-showcase-line {
    grid-template-rows: 220px 1fr;
  }

  .company-showcase-trust article,
  .company-showcase-trust article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-left: 0;
  }

  .company-showcase-trust article:first-child {
    border-top: 0;
  }

  .company-showcase-cta::after {
    right: -60px;
  }

  .company-showcase-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-showcase-cta h2 {
    font-size: 30px;
  }

  .company-showcase-cta .company-showcase-button {
    width: 100%;
  }
}

/* Products page refresh: photographic B2B hero and compact product lines. */
body[data-page="productos"] {
  background: #f5f7fa;
}

body[data-page="productos"] main {
  overflow: hidden;
}

.products-dark-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: #080b0f;
  border-radius: 0;
  isolation: isolate;
}

.products-dark-hero__media,
.products-dark-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.products-dark-hero__media {
  z-index: -2;
  object-fit: cover;
  object-position: 52% center;
}

.products-dark-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 7, 11, .97) 0%, rgba(4, 7, 11, .93) 35%, rgba(4, 7, 11, .58) 54%, rgba(4, 7, 11, .04) 78%);
}

.products-dark-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, calc(100% - (2 * var(--pad))));
  min-height: 550px;
  margin-left: max(var(--pad), calc((100% - var(--page)) / 2));
  padding: 54px 0 48px;
}

.products-dark-hero__eyebrow {
  align-self: flex-start;
  margin: 0 0 15px;
  padding: 8px 15px;
  color: #fff;
  background: #e30620;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.products-dark-hero h1 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.02;
}

.products-dark-hero h1 em {
  color: #ed172d;
  font-style: normal;
}

.products-dark-hero__lead {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.55;
}

.products-dark-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(620px, 100%);
  margin-top: 29px;
}

.products-dark-hero__features span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #fff;
}

.products-dark-hero__features img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.products-dark-hero__features b {
  font-size: 12px;
  font-weight: 750;
  line-height: 1.28;
}

.products-dark-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.products-dark-hero__primary,
.products-dark-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 174px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid #ed172d;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.products-dark-hero__primary {
  color: #fff;
  background: #e30620;
}

.products-dark-hero__secondary {
  color: #fff;
  background: rgba(7, 10, 15, .3);
  border-color: rgba(255, 255, 255, .75);
}

.products-dark-hero__primary:hover,
.products-dark-hero__primary:focus-visible {
  background: #bd0017;
  border-color: #bd0017;
}

.products-dark-hero__secondary:hover,
.products-dark-hero__secondary:focus-visible {
  color: #101318;
  background: #fff;
  border-color: #fff;
}

.products-dark-hero__dots {
  display: flex;
  gap: 7px;
  margin-top: 27px;
}

.products-dark-hero__dots i {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, .82);
  border-radius: 50%;
}

.products-dark-hero__dots i:first-child {
  width: 24px;
  background: #e30620;
  border-radius: 999px;
}

.products-lineup {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto 54px;
  padding: 36px 0 0;
}

.products-lineup__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.products-lineup__heading .eyebrow {
  margin: 0 0 7px;
  color: #d80925;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-lineup__heading h2 {
  margin: 0;
  color: #131a25;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.1;
}

.products-lineup__heading p:last-child {
  margin: 7px 0 0;
  color: #606b7c;
  font-size: 14px;
}

.products-lineup__all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 10px 15px;
  color: #d80925;
  background: #fff;
  border: 1px solid #dce2e9;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.products-lineup__all img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.products-lineup__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.products-line-card {
  position: relative;
  display: grid;
  grid-template-rows: 144px 1fr;
  min-width: 0;
  overflow: hidden;
  color: #151b25;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
}

.products-line-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 144px;
  overflow: hidden;
  background: #f6f7f8;
}

.products-line-card__visual > img:not(.products-line-card__icon) {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.products-line-card__icon {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 1;
  width: 31px;
  height: 31px;
  padding: 6px;
  object-fit: contain;
  background: #fff1f3;
  border-radius: 50%;
}

.products-line-card__copy {
  display: flex;
  flex-direction: column;
  min-height: 166px;
  padding: 16px 15px 15px;
}

.products-line-card h2 {
  margin: 0;
  color: #151b25;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.products-line-card p {
  margin: 8px 0 13px;
  color: #596476;
  font-size: 12.5px;
  line-height: 1.45;
}

.products-line-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #d80925;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
}

.products-line-card a:hover,
.products-line-card a:focus-visible,
.products-lineup__all:hover,
.products-lineup__all:focus-visible {
  color: #9e0014;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-lineup__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
}

.products-lineup__proof article {
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px 20px;
  border-left: 1px solid #e4e8ed;
}

.products-lineup__proof article:first-child {
  border-left: 0;
}

.products-lineup__proof img {
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.products-lineup__proof p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.products-lineup__proof strong {
  color: #151b25;
  font-size: 13px;
  line-height: 1.25;
}

.products-lineup__proof span {
  color: #647082;
  font-size: 11.5px;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .products-dark-hero__content {
    width: min(650px, calc(100% - (2 * var(--pad))));
  }

  .products-dark-hero h1 {
    font-size: 50px;
  }

  .products-dark-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 390px;
  }

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

@media (max-width: 760px) {
  .products-lineup {
    width: calc(100% - 24px);
  }

  .products-dark-hero {
    min-height: 700px;
  }

  .products-dark-hero__media {
    object-position: 65% bottom;
  }

  .products-dark-hero__shade {
    background: linear-gradient(180deg, rgba(4, 7, 11, .97) 0%, rgba(4, 7, 11, .9) 42%, rgba(4, 7, 11, .3) 68%, rgba(4, 7, 11, .05) 100%);
  }

  .products-dark-hero__content {
    justify-content: flex-start;
    width: 100%;
    min-height: 700px;
    margin-left: 0;
    padding: 36px 24px 260px;
  }

  .products-dark-hero h1 {
    font-size: 42px;
  }

  .products-dark-hero__lead {
    font-size: 15px;
  }

  .products-dark-hero__features {
    gap: 13px 18px;
    margin-top: 22px;
  }

  .products-dark-hero__actions {
    margin-top: 23px;
  }

  .products-lineup {
    padding-top: 28px;
  }

  .products-lineup__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .products-lineup__heading h2 {
    font-size: 28px;
  }

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

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

  .products-lineup__proof article:nth-child(3) {
    border-left: 0;
  }

  .products-lineup__proof article:nth-child(n + 3) {
    border-top: 1px solid #e4e8ed;
  }
}

@media (max-width: 500px) {
  .products-dark-hero {
    min-height: 735px;
  }

  .products-dark-hero__content {
    min-height: 735px;
    padding: 28px 18px 265px;
  }

  .products-dark-hero h1 {
    font-size: 35px;
  }

  .products-dark-hero__features img {
    width: 30px;
    height: 30px;
  }

  .products-dark-hero__features span {
    grid-template-columns: 30px 1fr;
  }

  .products-dark-hero__primary,
  .products-dark-hero__secondary {
    flex: 1 1 100%;
    width: 100%;
  }

  .products-lineup__grid,
  .products-lineup__proof {
    grid-template-columns: 1fr;
  }

  .products-line-card {
    grid-template-rows: 180px 1fr;
  }

  .products-line-card__visual {
    min-height: 180px;
  }

  .products-lineup__proof article,
  .products-lineup__proof article:nth-child(3) {
    border-top: 1px solid #e4e8ed;
    border-left: 0;
  }

  .products-lineup__proof article:first-child {
    border-top: 0;
  }
}

/* Inicio y Nosotros: usar Productos como referencia común de altura. */
.company-showcase-hero,
.company-showcase-hero__inner,
body[data-page="home"] .image-slide-hero,
body[data-page="home"] .image-slide-hero .hero-inner {
  min-height: 550px;
}

.company-showcase-hero__inner {
  padding-block: 28px 24px;
}

.company-showcase-hero__copy {
  width: min(820px, 68%);
}

.company-showcase-kicker {
  margin-bottom: 8px;
  font-size: 12px;
}

.company-showcase-hero h1 {
  max-width: 820px;
  font-size: 42px;
  line-height: 1;
}

.company-showcase-lead {
  max-width: 760px;
  margin: 12px 0 16px;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.42;
}

.company-showcase-values {
  margin-bottom: 18px;
}

.company-showcase-values article {
  padding-inline: 12px;
}

.company-showcase-icon {
  width: 32px;
  height: 32px;
}

.company-showcase-icon svg {
  width: 24px;
  height: 24px;
}

.company-showcase-values strong {
  margin-top: 3px;
  font-size: 12.5px;
}

.company-showcase-values small {
  margin-top: 2px;
  font-size: 10.5px;
  line-height: 1.3;
}

.company-showcase-button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .company-showcase-hero,
  .company-showcase-hero__inner,
  body[data-page="home"] .image-slide-hero,
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: 551.08px;
  }

  .company-showcase-hero__inner {
    padding-block: 24px 20px;
  }

  .company-showcase-hero__copy {
    width: min(740px, 78%);
  }

  .company-showcase-hero h1 {
    max-width: 740px;
    font-size: 40px;
  }

  .company-showcase-values {
    gap: 10px 0;
    margin-bottom: 14px;
  }

  .company-showcase-values small {
    display: none;
  }
}

@media (max-width: 820px) {
  .company-showcase-hero__copy {
    width: 100%;
    max-width: 680px;
  }

  .company-showcase-hero h1 {
    max-width: 650px;
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .company-showcase-hero,
  .company-showcase-hero__inner,
  body[data-page="home"] .image-slide-hero,
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: 701.55px;
  }

  .company-showcase-hero__inner {
    align-items: center;
    padding-block: 32px 28px;
  }

  .company-showcase-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 620px) {
  .company-showcase-hero__inner {
    align-items: flex-end;
    padding-block: 36px 30px;
  }

  .company-showcase-hero h1 {
    font-size: 32px;
  }

  .company-showcase-lead {
    margin-block: 14px 18px;
    font-size: 14px;
  }

  .company-showcase-values {
    gap: 12px 0;
  }
}

@media (max-width: 500px) {
  .company-showcase-hero,
  .company-showcase-hero__inner,
  body[data-page="home"] .image-slide-hero,
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: 763.35px;
  }
}

@media (max-width: 400px) {
  .company-showcase-hero,
  .company-showcase-hero__inner,
  body[data-page="home"] .image-slide-hero,
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: 822.28px;
  }
}

@media (max-width: 340px) {
  .company-showcase-hero,
  .company-showcase-hero__inner,
  body[data-page="home"] .image-slide-hero,
  body[data-page="home"] .image-slide-hero .hero-inner {
    min-height: 857.97px;
  }
}

/* Inicio escritorio: mostrar completas las imágenes que ya incluyen textos. */
@media (min-width: 761px) {
  body[data-page="home"] .image-slide-hero {
    --home-slide-image: url("assets/generated/home-slide-accesorios.webp");
    isolation: isolate;
    background: #05070a;
  }

  body[data-page="home"] .image-slide-hero::before {
    display: block;
    inset: -20px;
    z-index: 0;
    background:
      linear-gradient(rgba(3, 5, 8, .3), rgba(3, 5, 8, .3)),
      var(--home-slide-image) center / cover no-repeat;
    filter: blur(16px) brightness(.72);
    transform: scale(1.04);
  }

  body[data-page="home"] .image-slide-hero .hero-bg,
  body[data-page="home"] .image-slide-hero .hero-bg-clone {
    z-index: 1;
    object-fit: contain;
    object-position: center;
  }

  body[data-page="home"] .image-slide-hero .hero-inner {
    z-index: 2;
  }
}

/* Catálogo: íconos de categorías suministrados por el cliente. */
.catalog-category-icon--uploaded {
  --catalog-upload-width: 72px;
  --catalog-upload-shift: 0px;
  width: 74px;
  height: 72px;
  flex: 0 0 72px;
  align-items: flex-start;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-category-icon--uploaded img {
  width: var(--catalog-upload-width);
  height: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: initial;
  transform: translateY(var(--catalog-upload-shift));
}

.catalog-category-icon--extintores {
  --catalog-upload-width: 70px;
  --catalog-upload-shift: -15px;
}

.catalog-category-icon--valvulas {
  --catalog-upload-width: 72px;
  --catalog-upload-shift: -16px;
}

.catalog-category-icon--mangueras {
  --catalog-upload-width: 72px;
  --catalog-upload-shift: -6px;
}

.catalog-category-icon--espumas {
  --catalog-upload-width: 72px;
  --catalog-upload-shift: -4px;
}

.catalog-category-icon--gabinetes {
  --catalog-upload-width: 116px;
}

.catalog-category-icon--agentes {
  --catalog-upload-width: 104px;
}

.catalog-category-icon--emergencia {
  --catalog-upload-width: 134px;
}

.catalog-category-button:hover .catalog-category-icon--uploaded,
.catalog-category-button.is-active .catalog-category-icon--uploaded {
  box-shadow: none;
}

.catalog-category-button .catalog-category-icon:not(.catalog-category-icon--uploaded) {
  width: 74px;
  height: 72px;
  flex: 0 0 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-category-button .catalog-category-icon:not(.catalog-category-icon--uploaded) img {
  width: 50px;
  height: 52px;
  object-fit: contain;
}

.catalog-category-button:hover .catalog-category-icon:not(.catalog-category-icon--uploaded),
.catalog-category-button.is-active .catalog-category-icon:not(.catalog-category-icon--uploaded) {
  box-shadow: none;
}

@media (max-width: 560px) {
  .catalog-category-icon--uploaded {
    width: 66px;
    height: 64px;
    flex-basis: 64px;
    transform: scale(.9);
  }

  .catalog-category-button .catalog-category-icon:not(.catalog-category-icon--uploaded) {
    width: 66px;
    height: 64px;
    flex-basis: 64px;
    transform: scale(.9);
  }
}
