:root {
  --runo-red: #e30613;
  --runo-red-dark: #bd0010;
  --ink: #151515;
  --muted: #626262;
  --line: #e9e9e9;
  --surface: #f7f7f7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 20, 20, .08);
  --radius: 22px;
  --section-title-size: clamp(2.8rem, 4.2vw, 4.75rem);
  --info-card-radius: 14px;
  --info-card-shadow: 0 8px 22px rgba(0, 0, 0, .045);
  --content-cta-height: 54px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
.pdf-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-container {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}
.section { padding: 108px 0; overflow: hidden; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--runo-red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Impact, "Arial Narrow", "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: .018em;
  line-height: .98;
  text-transform: uppercase;
}
h1 em, h2 em { color: var(--runo-red); font-style: italic; }
.red-line {
  display: block;
  width: 54px;
  height: 4px;
  margin: 25px 0 30px;
  border-radius: 4px;
  background: var(--runo-red);
}
.btn {
  display: inline-flex;
  min-height: 54px;
  padding: 0 28px;
  border: 1.5px solid transparent;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .pdf-icon { width: 1.25rem; height: 1.25rem; }
.btn-primary {
  color: var(--white);
  border-color: var(--runo-red);
  background: var(--runo-red);
  box-shadow: 0 10px 24px rgba(227, 6, 19, .2);
}
.btn-primary:hover, .btn-primary:focus { color: var(--white); border-color: var(--runo-red-dark); background: var(--runo-red-dark); }
.btn-outline { color: var(--ink); border-color: #2b2b2b; background: transparent; }
.btn-outline:hover { color: var(--runo-red); border-color: var(--runo-red); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--runo-red); font-weight: 750; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 88px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, .07); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 42px; }
.brand { flex: 0 0 auto; }
.brand img { width: 174px; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; margin: 0; padding: 0; align-items: center; gap: 34px; list-style: none; }
.site-nav a {
  position: relative;
  display: block;
  padding: 32px 0 29px;
  font-size: .94rem;
  font-weight: 550;
  white-space: nowrap;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--runo-red);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--runo-red); }
.site-nav a.active { font-weight: 650; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.catalog-country-switcher { position: relative; font-family: inherit; font-size: 14px; }
.catalog-country-switcher .switcher-trigger {
  display: flex;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  align-items: center;
  gap: 7px;
  color: #333;
  background: transparent;
  cursor: pointer;
  font: inherit;
  line-height: 1.4;
  transition: color .18s ease, background-color .18s ease;
}
.catalog-country-switcher .switcher-trigger:hover { color: var(--runo-red); background: #f8f8f8; }
.catalog-country-switcher .switcher-trigger:focus-visible,
.catalog-country-switcher .switcher-option:focus-visible { outline: 2px solid var(--runo-red); outline-offset: 2px; }
.catalog-country-switcher .market-label {
  color: #747474;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-country-switcher .current-market { color: var(--ink); font-weight: 650; }
.catalog-country-switcher .switcher-trigger:hover .current-market { color: var(--runo-red); }
.catalog-country-switcher .icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.catalog-country-switcher .icon-chevron { width: 14px; height: 14px; transition: transform .18s ease; }
.catalog-country-switcher[data-state="open"] .icon-chevron { transform: rotate(180deg); }
.catalog-country-switcher .switcher-dropdown {
  position: absolute;
  z-index: 1002;
  top: calc(100% + 6px);
  right: 0;
  display: grid;
  width: max-content;
  min-width: 280px;
  padding: 6px 0;
  margin: 0;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}
.catalog-country-switcher[data-state="open"] .switcher-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.catalog-country-switcher .switcher-hint {
  padding: 10px 16px 8px;
  border-bottom: 1px solid #ebebeb;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.45;
}
.catalog-country-switcher .switcher-option {
  display: flex;
  width: 100%;
  padding: 10px 14px 10px 16px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #333;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color .18s ease, background-color .18s ease;
}
.catalog-country-switcher .switcher-option:hover { color: var(--runo-red); background: #f8f8f8; }
.catalog-country-switcher .switcher-option.selected { color: var(--runo-red); font-weight: 600; }
.catalog-country-switcher .icon-check { opacity: 0; color: var(--runo-red); stroke-width: 2; }
.catalog-country-switcher .switcher-option.selected .icon-check { opacity: 1; }
.category-tabs-inner { display: flex; min-width: 0; align-items: center; }
.category-tabs-inner .tabs-scroll { min-width: 0; flex: 1; }
.catalog-country-switcher--catalog-tabs { margin-left: 22px; flex: 0 0 auto; }
.catalog-country-switcher--catalog-tabs .switcher-trigger { padding-right: 0; }
.detail-context-bar { display: flex; margin-bottom: 28px; align-items: center; gap: 20px; }
.detail-context-bar .breadcrumbs { min-width: 0; margin-bottom: 0; flex: 1; }
.catalog-country-switcher--detail { flex: 0 0 auto; }
.catalog-country-switcher--detail .switcher-trigger { padding-right: 0; }
.catalogue-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--runo-red);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .12s ease, transform .42s ease;
}
body.catalogue-is-switching .catalogue-progress { opacity: 1; transform: scaleX(.86); }
.header-quote { min-height: 48px; padding: 0 20px; justify-content: center; gap: 10px; font-size: .82rem; font-weight: 600; text-transform: uppercase; }
.header-quote span { line-height: 1; transform: translateY(1px); }
.header-quote.iconless .pdf-icon { display: none; }
.mobile-nav-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 1.8rem; }

/* Hero */
.hero-section { min-height: calc(100vh - 88px); padding: 32px 0 40px; display: flex; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(390px, .72fr) minmax(0, 1.28fr); align-items: center; gap: 32px; }
.hero-copy { max-width: 430px; padding: 24px 0 24px 10px; }
.hero-copy h1 { margin-bottom: 0; font-size: clamp(2.6rem, 3.4vw, 3rem); line-height: 1.54; }
.hero-title-line { display: block; width: max-content; white-space: nowrap; transform: scaleY(1.2); transform-origin: left center; }
.hero-copy .red-line { margin: 8px 0 27px; }
.hero-lead { max-width: 390px; margin-bottom: 34px; color: #343434; font-size: 1.08rem; font-weight: 600; line-height: 1.65; }
.hero-copy .button-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hero-copy .btn { width: 100%; min-width: 0; padding-inline: 18px; font-weight: 600; white-space: nowrap; }
.cta-arrow { position: relative; display: inline-block; width: 20px; height: 14px; flex: 0 0 20px; transition: transform .2s ease; }
.cta-arrow::before { position: absolute; top: 50%; right: 1px; left: 0; height: 1px; background: currentColor; content: ""; transform: translateY(-50%); }
.cta-arrow::after { position: absolute; top: 50%; right: 1px; width: 8px; height: 8px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; content: ""; transform: translateY(-50%) rotate(45deg); }
.hero-copy .btn:hover .cta-arrow { transform: translateX(3px); }
.hero-media { position: relative; overflow: hidden; height: clamp(500px, calc(100vh - 178px), 620px); border-radius: 18px; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; }

/* About */
.about-section {
  min-height: calc(100svh - 88px);
  display: flex;
  padding: clamp(32px, 4vh, 64px) 0;
  align-items: center;
  overflow: visible;
  background: var(--surface);
}
.about-section > .site-container { width: min(1780px, calc(100% - 64px)); }
.split-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; gap: clamp(54px, 4.3vw, 82px); }
.split-grid > * { min-width: 0; }
.about-media { position: relative; height: auto; border-radius: 22px; aspect-ratio: 1.225 / 1; }
.about-media > img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.about-section .eyebrow { margin-bottom: 26px; font-size: clamp(.72rem, .72vw, .9rem); }
.location-card {
  position: absolute;
  right: clamp(-18px, -.95vw, -8px);
  bottom: 0;
  display: flex;
  overflow: hidden;
  width: clamp(200px, 15.85vw, 304px);
  min-width: 0;
  min-height: clamp(96px, 8vw, 150px);
  padding: clamp(18px, 1.4vw, 26px);
  border-radius: 20px;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: var(--runo-red);
  box-shadow: 0 18px 42px rgba(227, 6, 19, .24);
  isolation: isolate;
}
.location-card::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(10px, 1vw, 18px);
  width: clamp(56px, 4.8vw, 92px);
  height: clamp(84px, 7.2vw, 138px);
  background: url("../img/peru-dot-map.c5f9201983e3.png") center / contain no-repeat;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}
.location-card i { font-size: 2rem; }
.location-card .pdf-icon { width: clamp(2.25rem, 2.5vw, 3rem); height: clamp(2.25rem, 2.5vw, 3rem); }
.location-card span { display: flex; flex-direction: column; }
.location-card strong { font-size: clamp(1.35rem, 1.7vw, 2rem); line-height: 1.1; text-transform: uppercase; }
.section-copy h1, .section-copy h2, .section-heading h2, .service-copy h1, .service-copy h2, .contact-copy h1, .contact-copy h2 { font-size: var(--section-title-size); }
.about-section .section-copy { width: 100%; max-width: min(680px, 35.2vw); padding-top: 8px; }
.about-section .section-copy h1, .about-section .section-copy h2 { margin-bottom: 26px; font-size: clamp(2.8rem, 3.55vw, 4.25rem); line-height: 1.02; }
.section-copy > p:not(.eyebrow) { color: #3f3f3f; }
.about-section .section-copy > p:not(.eyebrow) { margin-bottom: clamp(10px, .9vw, 18px); font-size: clamp(.8rem, .95vw, 1.125rem); line-height: 1.55; }
.about-section .section-copy > .about-note { margin-bottom: 0; font-size: clamp(.75rem, .85vw, 1rem); white-space: nowrap; }
.stats-grid {
  display: grid;
  width: 100%;
  max-width: 680px;
  margin-top: clamp(16px, 1.1vw, 22px);
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(12px, 1.45vw, 28px);
  row-gap: clamp(12px, .85vw, 16px);
}
.stat-card {
  display: flex;
  min-height: clamp(70px, 5.4vw, 104px);
  padding: 14px clamp(15px, 1.15vw, 22px);
  border: 1px solid #ededed;
  border-radius: var(--info-card-radius);
  align-items: center;
  gap: 12px;
  background: var(--white);
  box-shadow: var(--info-card-shadow);
}
.stat-card i { padding-right: 15px; border-right: 1px solid #ddd; color: var(--runo-red); font-size: 1.8rem; }
.stat-card .pdf-icon { width: clamp(36px, 2.7vw, 54px); height: clamp(36px, 2.7vw, 54px); padding-right: 12px; border-right: 1px solid rgba(227, 6, 19, .48); }
.stat-card span { display: flex; flex-direction: column; color: var(--muted); font-size: clamp(.7rem, .72vw, .86rem); line-height: 1.35; }
.stat-card strong { color: var(--ink); font-size: clamp(.82rem, .94vw, 1.125rem); }

/* Catalog */
.section-heading { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--muted); }
.catalog-section { min-height: calc(100vh - 88px); padding: 32px 0; background: var(--surface); }
.catalog-section > .site-container { width: min(1780px, 93.125%); }
.catalog-section .section-heading { display: none; }
.catalog-grid {
  display: grid;
  padding: 54px 11.6vw;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  grid-template-columns: minmax(0, .934fr) minmax(0, 1fr);
  gap: clamp(64px, 8.35vw, 160px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.catalog-grid--systems-only { grid-template-columns: minmax(0, 1fr); }
.catalog-panel { padding: 46px 54px; border: 1px solid #ededed; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.catalog-section .catalog-panel { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }

@media (min-width: 992px) {
  .catalog-section { display: flex; align-items: center; }
  .catalog-section > .site-container { flex: 0 0 auto; }
}

.panel-heading .red-line { width: 68px; margin: 0 0 20px; height: 4px; }
.panel-heading h3 { margin-bottom: 19px; font-size: 2.5rem; font-weight: 750; line-height: 1.2; }
.category-list, .system-list { border-top: 1px solid var(--line); }
.category-row, .system-list a {
  display: grid;
  min-height: 85px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: 650;
  transition: color .2s ease, background-color .2s ease;
}
.category-row, .system-list a { grid-template-columns: 60px 1fr auto; }
.category-row:focus-visible, .system-list a:focus-visible {
  border-radius: 8px;
  outline: 2px solid rgba(227, 6, 19, .38);
  outline-offset: 3px;
  color: var(--runo-red);
  background: rgba(227, 6, 19, .035);
}
.category-thumb { overflow: visible; width: 70px; height: 70px; background: transparent; transform: translateX(-10px); }
.category-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-thumb .category-catalog-icon { padding: 0; object-fit: contain; }
.category-thumb .category-fallback-icon { display: grid; width: 100%; height: 100%; place-items: center; color: var(--runo-red); font-size: 1.85rem; }
.category-row > i, .system-list a > i:last-child { color: var(--runo-red); }
.row-chevron { width: 20px; height: 20px; opacity: 1; transition: transform .2s ease; }
.system-list a > i:first-child { color: var(--runo-red); font-size: 1.65rem; }
.system-list .system-icon { width: 54px; height: 54px; justify-self: start; }
.empty-copy { padding: 24px 0; color: var(--muted); }

@media (hover: hover) {
  .category-row:hover, .system-list a:hover {
    color: var(--runo-red);
    background: rgba(227, 6, 19, .035);
  }
  .category-row:hover .row-chevron, .system-list a:hover .row-chevron {
    transform: scale(1.08);
  }
}

/* BA60 feature */
.system-feature { padding: 0 0 108px; overflow: visible; background: var(--surface); }
.system-tabs {
  margin-bottom: 28px;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.system-tabs-scroll {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 0;
  scrollbar-width: none;
}
.system-tabs-scroll::-webkit-scrollbar { display: none; }
.system-tabs-scroll a {
  position: relative;
  display: inline-flex;
  min-height: 66px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: .83rem;
  font-weight: 650;
  white-space: nowrap;
}
.system-tabs-scroll a::after {
  position: absolute;
  right: 28px;
  bottom: -1px;
  left: 28px;
  height: 3px;
  background: var(--runo-red);
  content: "";
  transform: scaleX(0);
}
.system-tabs-scroll a:hover, .system-tabs-scroll a.active { color: var(--runo-red); }
.system-tabs-scroll a.active::after { transform: scaleX(1); }
.system-tabs-scroll .system-tabs-back {
  padding-left: 0;
  padding-right: 30px;
  gap: 10px;
  color: var(--runo-red);
  font-size: 1rem;
  font-weight: 800;
}
.system-tabs-back .pdf-icon { width: 18px; height: 18px; }
.feature-card { display: grid; overflow: hidden; border-radius: var(--radius); grid-template-columns: .62fr 1.38fr; background: var(--white); box-shadow: var(--shadow); }
.feature-copy { padding: 46px 40px; }
.feature-copy h1, .feature-copy h2 { margin-bottom: 0; font-size: clamp(3.4rem, 5vw, 5.6rem); }
.feature-copy > p:not(.eyebrow) { color: var(--muted); font-weight: 500; }
.feature-copy .check-list { margin-bottom: 0; }
.feature-copy .check-list li { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.feature-media { min-height: 570px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; margin: 30px 0; padding: 0; list-style: none; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.check-list i { color: var(--runo-red); }
.check-list .pdf-icon { width: 22px; height: 22px; }
.system-support-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: .52fr 1.48fr;
  gap: 18px;
}
.system-application, .kit-card {
  border: 1px solid #ededed;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .045);
}
.system-application {
  display: flex;
  min-height: 182px;
  padding: 30px;
  align-items: center;
  gap: 24px;
}
.system-application > .pdf-icon { width: 58px; height: 58px; }
.system-application h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}
.system-application p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.kit-card { padding: 24px 28px 22px; }
.kit-card > h3 { margin-bottom: 16px; font-size: 1.08rem; font-weight: 800; }
.kit-grid { display: grid; grid-template-columns: repeat(9, minmax(66px, 1fr)); }
.kit-grid > div {
  display: flex;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.kit-grid > div:last-child { border-right: 0; }
.kit-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: contrast(1.8) drop-shadow(0 0 .25px rgba(15, 15, 15, .45));
  transform: scale(1.12);
}
.kit-grid span { font-size: .63rem; line-height: 1.28; }
.kit-grid strong { font-weight: 800; }

/* Service */
.service-section { background: var(--white); }
@media (min-width: 901px) {
  .service-section {
    display: flex;
    min-height: calc(100svh - 92px);
    align-items: center;
  }
  .service-section > .site-container { flex: 0 0 auto; }
}
.service-grid { display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: 58px; }
.service-copy { position: relative; }
.service-copy .eyebrow { display: none; }
.service-copy h1 em, .service-copy h2 em { font-style: normal; letter-spacing: .09em; }
.service-copy .red-line { width: 65px; margin-top: 33px; margin-bottom: 19px; }
.service-copy h3 { margin-bottom: 18px; font-size: 1.25rem; font-weight: 700; }
.service-copy > p:not(.eyebrow) { max-width: 350px; color: #494949; font-size: 1rem; font-weight: 400; line-height: 1.75; }
.service-copy .check-list li { font-size: 1.0625rem; font-weight: 500; }
.service-copy .check-list .pdf-icon { width: 26px; height: 26px; }
.service-copy .btn {
  width: 228px;
  min-height: var(--content-cta-height);
  padding-inline: 32px;
  justify-content: space-between;
  font-weight: 600;
  box-shadow: 0 5px 12px rgba(227, 6, 19, .12);
}
.service-copy .btn .pdf-icon { width: 32px; height: 32px; }
.service-media { position: relative; display: flex; overflow: hidden; min-height: 550px; border-radius: var(--radius); flex-direction: column; background: #343434; }
.service-media > img { width: 100%; min-height: 0; flex: 1 1 auto; object-fit: cover; object-position: center 58%; }
.service-values {
  display: grid;
  min-height: 110px;
  padding: 28px 34px;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(100deg, #414141 0%, #383838 100%);
  grid-template-columns: repeat(3, 1fr);
}
.service-values > span { display: flex; height: 54px; padding: 0 24px; border-right: 1px solid rgba(255, 255, 255, .55); align-self: center; align-items: center; justify-content: center; gap: 12px; font-size: 1rem; font-weight: 500; }
.service-values > span:last-child { border: 0; }
.service-value-label { line-height: 1.35; }
.service-values i { color: var(--runo-red); font-size: 1.7rem; }
.service-values .pdf-icon { width: 48px; height: 48px; }

/* Contact */
.contact-section { background: var(--surface); }
@media (min-width: 901px) {
  .contact-section {
    display: flex;
    min-height: calc(100svh - 92px);
    align-items: center;
  }
  .contact-section > .site-container { flex: 0 0 auto; }
  .contact-grid { align-items: stretch; }
  .contact-copy {
    display: flex;
    min-height: 0;
    align-self: stretch;
    justify-content: center;
    flex-direction: column;
  }
}
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 62px; }
.contact-media { overflow: hidden; height: 650px; border-radius: var(--radius); }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-copy h1 em, .contact-copy h2 em { font-style: normal; letter-spacing: .12em; }
.contact-copy > p:not(.eyebrow) { color: #383838; font-weight: 500; }
.address-grid { display: grid; margin: 30px 0; grid-template-columns: .94fr 1.06fr; gap: 14px; }
.address-grid > div { display: flex; min-height: 130px; padding: 20px; border-radius: var(--info-card-radius); align-items: flex-start; gap: 15px; background: var(--white); box-shadow: var(--info-card-shadow); }
.address-grid i { display: grid; width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--runo-red); }
.address-grid .address-icon { width: 48px; height: 48px; }
.address-grid span { color: #484848; font-size: .79rem; font-weight: 500; line-height: 1.6; }
.address-grid strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1rem; font-weight: 700; }
.contact-points { display: grid; margin: 26px 0 32px; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-points > div { display: flex; min-width: 0; align-items: flex-start; gap: 10px; }
.contact-points > div:not(:last-child) { padding-right: 14px; border-right: 1px solid #dedede; }
.contact-points span { display: flex; min-width: 0; flex-direction: column; gap: 6px; font-size: .75rem; line-height: 1.3; }
.contact-points strong { color: var(--ink); font-weight: 700; }
.contact-points small { color: #5f5f5f; font-size: .68rem; font-weight: 500; line-height: 1.45; }
.contact-points .pdf-icon { width: 28px; height: 28px; }
.contact-copy .button-row { display: grid; max-width: 420px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-copy .button-row .btn { width: 100%; padding-inline: 16px; font-weight: 700; text-transform: uppercase; }
.contact-copy .button-row .btn-outline { color: var(--runo-red); border-color: var(--runo-red); }
.contact-copy .button-row .btn-outline .pdf-icon {
  filter: brightness(0) saturate(100%) invert(12%) sepia(99%) saturate(6501%) hue-rotate(352deg) brightness(94%) contrast(106%);
}

/* Footer */
.site-footer { padding: 68px 0 22px; color: rgba(255, 255, 255, .75); background: #151515; }
.footer-grid { display: grid; padding-bottom: 46px; grid-template-columns: 1.4fr 1fr 1fr; gap: 70px; }
.footer-grid > div:first-child p { max-width: 440px; }
.footer-logo { width: 155px; height: auto; margin-bottom: 22px; }
.footer-grid h2 { margin-bottom: 16px; color: var(--white); font-family: inherit; font-size: .84rem; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.footer-grid p, .footer-grid a { display: block; margin-bottom: 8px; font-size: .86rem; }
.footer-grid a:hover { color: var(--white); }
.footer-seo-links { display: flex; margin-top: 18px; flex-wrap: wrap; gap: 7px 18px; }
.footer-grid .footer-seo-links a { margin: 0; color: rgba(255, 255, 255, .76); }
.footer-bottom { display: flex; padding-top: 20px; padding-right: 72px; border-top: 1px solid rgba(255, 255, 255, .12); justify-content: space-between; font-size: .75rem; }
.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 24px;
  bottom: 24px;
  display: grid;
  overflow: hidden;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 6px 18px rgba(20, 20, 20, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float img { position: absolute; top: 50%; left: 50%; width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); transform: translate(-50%, -50%); }
.whatsapp-float:hover { color: var(--white); box-shadow: 0 8px 22px rgba(20, 20, 20, .22); transform: translateY(-2px); }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37, 211, 102, .35); outline-offset: 3px; }
.whatsapp-float.is-context-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

.analytics-consent {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 20, 20, .18);
}
.analytics-consent[hidden] { display: none; }
.analytics-consent p { display: grid; margin: 0; gap: 3px; }
.analytics-consent p span { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.analytics-consent > div { display: flex; flex: 0 0 auto; gap: 10px; }
.analytics-consent .btn { min-width: 104px; min-height: 42px; padding-inline: 17px; }

/* Catalog page */
.catalog-page, .detail-page { min-height: 72vh; background: var(--surface); }
.category-tabs { position: sticky; z-index: 20; top: 88px; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); }
.system-detail-page .category-tabs { margin-bottom: 16px; }
.category-tabs .site-container, .product-section .site-container { width: min(1720px, 89.5%); }
.tabs-scroll { display: flex; overflow-x: auto; gap: 36px; scrollbar-width: none; }
.tabs-scroll::-webkit-scrollbar { display: none; }
.tabs-scroll a { position: relative; padding: 25px 0; flex: 0 0 auto; font-size: 1rem; font-weight: 650; }
.tabs-scroll a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--runo-red); content: ""; transform: scaleX(0); }
.tabs-scroll a:hover, .tabs-scroll a.active { color: var(--runo-red); }
.tabs-scroll a.active::after { transform: scaleX(1); }
.tabs-scroll .category-tabs-back { padding-right: 30px; border-right: 1px solid var(--line); display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 1.1rem; font-weight: 800; }
.tabs-scroll .category-tabs-back::after { display: none; }
.category-tabs-back .pdf-icon { width: 18px; height: 18px; }
.product-section { padding: 28px 0 90px; }
.catalog-heading { max-width: 760px; margin: 0 0 28px; }
.catalog-heading h1 { margin: 2px 0 8px; font-size: clamp(2rem, 3vw, 3.4rem); }
.catalog-heading > p { margin: 0; color: var(--muted); line-height: 1.65; }
.catalog-heading .catalogue-market-context { margin-top: 8px; color: #4d4d4d; font-size: .84rem; line-height: 1.5; }
.catalogue-market-context strong { color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card-shell { display: flex; min-width: 0; flex-direction: column; }
.product-card {
  flex: 1;
  display: grid;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid #ededed;
  border-radius: 15px;
  grid-template-columns: 1.03fr .97fr;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 20, 20, .035);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover { border-color: rgba(227, 6, 19, .24); box-shadow: 0 16px 38px rgba(20, 20, 20, .07); }
.product-card:focus-visible { outline: 3px solid rgba(227, 6, 19, .28); outline-offset: 3px; }
.product-image { height: 100%; min-height: 200px; padding: 20px 22px; order: 2; background: var(--white); }
.product-image img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.025) contrast(1.015); }
.product-body { padding: 18px 10px 16px 22px; order: 1; }
.product-body h3 { margin-bottom: 0; font-size: 1.32rem; font-weight: 800; line-height: 1.06; text-transform: uppercase; }
.product-body .product-summary { margin: 8px 0 0; color: var(--ink); font-size: .72rem; font-weight: 600; line-height: 1.35; }
.product-body .red-line { width: 32px; height: 3px; margin: 11px 0 13px; }
.product-body p { margin-bottom: 8px; color: var(--muted); font-size: .76rem; line-height: 1.32; }
.product-body p span { display: block; }
.product-body p strong { display: block; color: var(--ink); font-size: .8rem; line-height: 1.24; }
.product-link { display: none; }
.product-spec-link { padding: 10px 12px 0; color: var(--muted); font-size: .76rem; font-weight: 650; text-align: center; }
.product-spec-link:hover, .product-spec-link:focus-visible { color: var(--runo-red); }
.empty-state { padding: 70px 30px; border-radius: 18px; grid-column: 1 / -1; text-align: center; background: var(--white); }
.empty-state > i { color: var(--runo-red); font-size: 3rem; }
.empty-state h3 { margin: 15px 0 8px; font-size: 1.4rem; font-weight: 750; }
.empty-state p { margin-bottom: 24px; color: var(--muted); }
.image-placeholder { display: grid; width: 100%; height: 100%; min-height: 280px; place-items: center; color: #bbb; background: #f3f3f3; font-size: 3rem; }

/* SEO landing pages */
.seo-landing { min-height: 72vh; background: var(--surface); }
.seo-landing-section { padding: clamp(60px, 8vw, 118px) 0; }
.seo-landing-grid { display: grid; align-items: stretch; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(32px, 7vw, 110px); }
.seo-landing-copy { max-width: 850px; }
.seo-landing-copy h1 { max-width: 780px; margin: 0; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .94; text-transform: uppercase; }
.seo-landing-copy .red-line { margin: 26px 0 30px; }
.seo-landing-copy > p { max-width: 760px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.seo-landing-copy .seo-landing-lead { color: var(--ink); font-size: clamp(1.08rem, 1.5vw, 1.35rem); font-weight: 600; }
.seo-landing-list { display: grid; max-width: 760px; margin: 30px 0; padding: 0; gap: 0; list-style: none; }
.seo-landing-list li { display: flex; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: center; gap: 12px; font-weight: 650; }
.seo-landing-list img { width: 20px; height: 20px; object-fit: contain; }
.seo-landing-panel { display: flex; min-height: 330px; padding: 36px; border-radius: 24px; justify-content: flex-end; flex-direction: column; color: var(--white); background: linear-gradient(155deg, #171717, #333); box-shadow: var(--shadow); }
.seo-landing-panel strong { margin-bottom: 18px; color: var(--white); font-size: 1.35rem; }
.seo-landing-panel span { padding: 11px 0; border-top: 1px solid rgba(255, 255, 255, .18); }

/* Product detail */
.detail-section { padding: 34px 0 110px; }
.breadcrumbs { display: flex; overflow-x: auto; margin-bottom: 28px; align-items: center; gap: 9px; color: var(--muted); font-size: .875rem; white-space: nowrap; }
.breadcrumbs a { color: #515151; font-weight: 600; }
.breadcrumbs span { color: #757575; font-weight: 500; }
.breadcrumbs a:hover { color: var(--runo-red); }
.breadcrumbs i { font-size: .65rem; }
.detail-grid { display: grid; overflow: hidden; border-radius: var(--radius); grid-template-columns: 1.12fr .88fr; background: var(--white); box-shadow: var(--shadow); }
.detail-gallery { min-width: 0; min-height: 620px; background: #fafafa; }
.product-slider, .product-slider .swiper-wrapper, .product-slider .swiper-slide { height: 100%; min-height: 620px; }
.product-slider .swiper-slide { display: flex; padding: 50px; align-items: center; justify-content: center; }
.product-slider img { width: 100%; height: 520px; object-fit: contain; }
.swiper-pagination-bullet-active { background: var(--runo-red); }
.detail-copy { padding: 64px 54px; }
.detail-copy h1 { margin-bottom: 0; font-size: clamp(2.6rem, 3.5vw, 4rem); }
.detail-description { color: var(--muted); }
.spec-list { margin: 28px 0; }
.spec-list > div { display: grid; padding: 12px 0; border-bottom: 1px solid var(--line); grid-template-columns: .8fr 1.2fr; gap: 18px; }
.spec-list dt { color: var(--muted); font-size: .78rem; font-weight: 500; }
.spec-list dd { margin: 0; font-size: .86rem; font-weight: 700; }
.detail-actions { display: flex; margin-top: 26px; align-items: center; flex-wrap: wrap; gap: 22px; }

@media (min-width: 1501px) {
  .site-header .site-container,
  .site-footer .site-container { width: min(1780px, 92.5%); }
  .hero-section > .site-container { width: min(1780px, 92.5%); }
  .header-inner { position: relative; }
  .site-nav {
    position: absolute;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
  }
  .header-quote { margin-left: auto; }
  .about-section .section-copy h1, .about-section .section-copy h2 { margin-bottom: 44px; }
  .about-section .section-copy > p:not(.eyebrow) { font-size: 1.125rem; }
  .about-section .section-copy > p.about-intro { margin-bottom: 43px; }
  .about-section .section-copy > p.about-detail { margin-bottom: 28px; }
  .about-section .section-copy > p.about-note { margin-bottom: 0; font-size: 1.125rem; }
  .about-section .stats-grid { margin-top: 22px; }
}

@media (min-width: 1501px) and (min-height: 801px) and (max-height: 950px) {
  .about-section { padding: 8px 0; }
  .about-section .split-grid { align-items: stretch; }
  .about-section .about-media { height: var(--feature-panel-height); aspect-ratio: auto; }
  .about-section .section-copy {
    display: flex;
    height: var(--feature-panel-height);
    padding-top: 64px;
    flex-direction: column;
  }
  .about-section .section-copy h1, .about-section .section-copy h2 { margin-bottom: 28px; }
  .about-section .section-copy > p:not(.eyebrow) { font-size: .95rem; }
  .about-section .section-copy > p.about-intro { margin-bottom: 18px; }
  .about-section .section-copy > p.about-detail { margin-bottom: 16px; }
  .about-section .section-copy > p.about-note { font-size: .9rem; white-space: normal; }
  .about-section .stats-grid { margin-top: auto; row-gap: 12px; }
  .about-section .stat-card { min-height: 82px; }
}

@media (max-width: 1180px) {
  .site-container { width: min(100% - 44px, 1080px); }
  .about-section > .site-container { width: min(100% - 44px, 1080px); }
  .header-inner { gap: 24px; }
  .site-nav ul { gap: 20px; }
  .site-nav a { font-size: .8rem; }

  .header-quote span { display: none; }
  .header-quote { width: 48px; padding: 0; }
  .header-quote.iconless .pdf-icon { display: block; }
  .hero-grid { grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); gap: 28px; }
  .hero-copy h1 { font-size: 2.35rem; }
  .hero-copy .button-row { gap: 12px; }
  .hero-copy .btn { padding-inline: 14px; font-size: .82rem; }
  .hero-media { height: 520px; }
  .split-grid { gap: 36px; }
  .about-media { height: auto; }
  .catalog-panel { padding: 40px; }
  .service-grid { grid-template-columns: .7fr 1.3fr; gap: 36px; }
  .contact-grid { gap: 42px; }
  .system-support-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .product-card { height: 226px; }
}

@media (min-width: 1190px) {
  .system-feature { min-height: calc(100svh - 92px); }
  .system-tabs .site-container,
  .system-feature > .site-container { width: min(1780px, 92.5%); }
}

@media (min-width: 1190px) and (min-height: 801px) {
  .system-feature { padding-bottom: 28px; }
  .system-tabs { margin-bottom: 22px; }
  .system-tabs-scroll a {
    min-height: 80px;
    padding-inline: 34px;
    font-size: 1rem;
    font-weight: 500;
  }
  .system-tabs-scroll a.active { font-weight: 650; }
  .system-tabs-scroll .system-tabs-back { padding-left: 0; font-size: 1.08rem; font-weight: 650; }
  .feature-card {
    height: 510px;
    overflow: visible;
    grid-template-columns: 29fr 71fr;
    gap: 24px;
    background: transparent;
    box-shadow: none;
  }
  .feature-copy {
    overflow: hidden;
    min-width: 0;
    height: 100%;
    padding: 30px 32px 26px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .feature-copy .eyebrow {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: 0;
  }
  .feature-copy h1, .feature-copy h2 { font-size: 3rem; line-height: 1; white-space: nowrap; }
  .feature-copy .red-line { width: 34px; height: 4px; margin: 16px 0 20px; }
  .feature-copy > p:not(.eyebrow) {
    margin-bottom: 0;
    color: #3f3f3f;
    font-size: .9375rem;
    line-height: 1.5;
  }
  .feature-copy .check-list { margin-top: 16px; gap: 0; }
  .feature-copy .check-list li {
    min-height: 34px;
    padding: 7px 0;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25;
  }
  .feature-copy .check-list .pdf-icon { width: 20px; height: 20px; }
  .feature-media {
    overflow: hidden;
    height: 100%;
    min-height: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .system-support-grid {
    height: 150px;
    margin-top: 14px;
    grid-template-columns: 29fr 71fr;
    gap: 24px;
  }
  .system-application { min-height: 0; height: 150px; padding: 24px 26px; gap: 20px; }
  .system-application > .pdf-icon { width: 62px; height: 62px; transform: scale(1.08); }
  .system-application h3 { margin-bottom: 7px; font-size: 1.0625rem; font-weight: 700; }
  .system-application p { font-size: .75rem; line-height: 1.45; }
  .kit-card { height: 150px; padding: 10px 24px 9px; }
  .kit-card > h3 { margin-bottom: 4px; font-size: 1.3125rem; font-weight: 700; }
  .kit-grid > div { padding-inline: 10px; }
  .kit-grid img {
    width: 62px;
    height: 62px;
    margin-bottom: 3px;
    transform: scale(1.18);
  }
  .kit-grid span { font-size: .75rem; font-weight: 500; line-height: 1.25; }
  .kit-grid strong { font-weight: 700; }

  .service-section { padding: 54px 0 61px; }
  .service-section > .site-container { width: min(1780px, 92.5%); }
  .service-grid {
    height: 695px;
    grid-template-columns: .57fr 1.43fr;
    gap: 58px;
  }
  .service-copy { top: 12px; max-width: 410px; padding-left: 24px; }
  .service-copy .check-list .pdf-icon { width: 30px; height: 30px; }
  .service-copy .btn { width: 284px; min-height: var(--content-cta-height); font-size: 1.0625rem; }
  .service-copy .btn .pdf-icon { width: 32px; height: 32px; }
  .service-media { height: 695px; min-height: 0; }
  .service-media > img { min-height: 0; }
  .service-values { height: 128px; padding: 22px 36px; }
  .service-values > span { padding-inline: 30px; font-size: 1rem; }
  .service-values .pdf-icon { width: 60px; height: 60px; }

  .contact-section { padding: 46px 0 76px; }
  .contact-section > .site-container { width: min(1780px, 92.5%); }
  .contact-grid {
    height: 688px;
    grid-template-columns: 1.39fr 1fr;
    gap: 70px;
  }
  .contact-media { height: 688px; }
  .contact-copy { margin-top: 0; }
  .contact-copy h1, .contact-copy h2 { font-size: 4.75rem; }
  .contact-copy > p:not(.eyebrow) { max-width: 490px; font-size: 1rem; line-height: 1.55; }
  .address-grid { margin: 24px 0; }
  .address-grid > div { min-height: 112px; padding: 15px 18px; align-items: center; }
  .address-grid .address-icon { width: 56px; height: 56px; transform: none; }
  .address-grid span { font-size: .78rem; line-height: 1.48; }
  .address-grid strong { font-size: .9rem; }
  .contact-points { min-height: 54px; margin: 26px 0 32px; }
  .contact-points > div { gap: 10px; }
  .contact-points .pdf-icon { width: 30px; height: 30px; transform: none; }
  .contact-points span { font-size: .72rem; }
  .contact-points small { font-size: .64rem; }
  .contact-copy .button-row { max-width: 380px; gap: 14px; }
  .contact-copy .button-row .btn { min-height: var(--content-cta-height); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
  .contact-copy .button-row .pdf-icon { width: 23px; height: 23px; transform: none; }
  .contact-copy .button-row .btn-outline { color: var(--runo-red); border-color: var(--runo-red); }
  .contact-copy .button-row .btn-outline .pdf-icon {
    filter: brightness(0) saturate(100%) invert(12%) sepia(99%) saturate(6501%) hue-rotate(352deg) brightness(94%) contrast(106%);
  }

  .detail-section { padding: 34px 0 38px; }
  .detail-section > .site-container { width: min(1720px, 89.5%); }
  .detail-copy h1 { max-width: 560px; }
  .detail-actions .detail-whatsapp-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
  }
}

@media (min-width: 1501px) and (min-height: 951px) {
  .hero-media { height: min(826px, calc(100svh - 160px)); }
  .contact-section { padding-top: 77px; }
  .contact-grid,
  .contact-media { height: var(--feature-panel-height); }
}

@media (min-width: 1501px) and (min-height: 801px) {
  :root { --feature-panel-height: min(720px, calc(100svh - 184px)); }
  .about-section .about-media {
    height: var(--feature-panel-height);
    aspect-ratio: auto;
  }
  .about-section .section-copy { height: var(--feature-panel-height); }
  .service-grid,
  .service-media,
  .contact-grid,
  .contact-media { height: var(--feature-panel-height); }
}

@media (min-width: 992px) and (max-height: 800px) {
  .detail-section { padding: 20px 0 56px; }
  .breadcrumbs { margin-bottom: 18px; }
  .detail-gallery { min-height: 500px; }
  .product-slider, .product-slider .swiper-wrapper, .product-slider .swiper-slide { min-height: 500px; }
  .product-slider .swiper-slide { padding: 34px; }
  .product-slider img { height: 420px; }
  .detail-copy { padding: 42px 44px; }
  .detail-copy h1 { font-size: clamp(2.5rem, 3.5vw, 3.2rem); }
  .detail-copy .red-line { margin: 18px 0 22px; }
  .spec-list { margin: 22px 0; }
  .spec-list > div { padding: 10px 0; }
  .detail-actions { margin-top: 24px; }

  .about-section { padding: 12px 0; }
  .about-section .split-grid { align-items: center; }
  .about-section .about-media { height: calc(100vh - 116px); min-height: 430px; aspect-ratio: auto; }
  .about-section .section-copy { padding-top: 0; }
  .about-section .eyebrow { margin-bottom: 12px; }
  .about-section .section-copy h1, .about-section .section-copy h2 { margin-bottom: 18px; font-size: clamp(2.65rem, 3.65vw, 3.35rem); line-height: .98; }
  .about-section .section-copy > p:not(.eyebrow) { margin-bottom: 12px; font-size: clamp(.8125rem, .98vw, .93rem); font-weight: 500; line-height: 1.5; }
  .about-section .section-copy > p.about-intro { margin-bottom: 16px; }
  .about-section .section-copy > .about-note { margin-bottom: 0; font-size: clamp(.78rem, .9vw, .875rem); }
  .about-section .stats-grid { margin-top: 14px; row-gap: 12px; }
  .about-section .stat-card { min-height: 66px; padding: 10px 14px; }
  .about-section .stat-card .pdf-icon { width: 42px; height: 42px; }
  .about-section .stat-card span { font-size: .75rem; }
  .about-section .stat-card strong { font-size: .9rem; }

  .system-feature { padding-bottom: 22px; }
  .system-tabs { margin-bottom: 16px; }
  .system-tabs-scroll a { min-height: 54px; padding-inline: 26px; }
  .system-tabs-scroll .system-tabs-back {
    gap: 9px;
    color: var(--runo-red);
    font-size: .9375rem;
    font-weight: 700;
  }
  .system-tabs-back .pdf-icon { width: 15px; height: 15px; }
  .feature-copy {
    padding: 25px 24px 22px;
    border-radius: 16px;
  }
  .feature-copy .eyebrow {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: .875rem;
    font-weight: 750;
    letter-spacing: 0;
  }
  .feature-copy h2 {
    font-size: clamp(2.5rem, 3.35vw, 2.7rem);
    line-height: 1;
    white-space: nowrap;
  }
  .feature-copy .red-line { width: 26px; height: 3px; margin: 12px 0 16px; }
  .feature-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-bottom: 0;
    color: #3f3f3f;
    font-size: .8125rem;
    line-height: 1.45;
  }
  .feature-copy .check-list { margin-top: 21px; gap: 0; }
  .feature-copy .check-list li {
    min-height: 30px;
    padding: 5px 0;
    gap: 10px;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .feature-copy .check-list .pdf-icon { width: 17px; height: 17px; }
  .feature-media { min-height: 390px; }
  .system-support-grid { margin-top: 12px; gap: 12px; }
  .system-application { min-height: 126px; padding: 20px; gap: 18px; }
  .system-application > .pdf-icon { width: 48px; height: 48px; }
  .kit-card { padding: 14px 20px 12px; }
  .kit-card > h3 { margin-bottom: 8px; }
  .kit-grid img { width: 44px; height: 44px; margin-bottom: 5px; }

  .service-section { padding: 20px 0; }
  .service-media { height: 464px; min-height: 0; }
  .service-media > img { min-height: 0; }
  .service-copy h1, .service-copy h2 { font-size: clamp(3.1rem, 4.8vw, 3.8rem); }
  .service-copy .red-line { margin: 20px 0 18px; }
  .service-copy h3 { margin-bottom: 12px; }
  .service-copy > p:not(.eyebrow) { font-size: .9375rem; line-height: 1.6; }
  .service-copy .check-list { margin: 14px 0; gap: 6px; }
  .service-values { min-height: 104px; padding: 20px 22px; }

  .contact-section { padding: 18px 0; }
  .contact-grid { height: 479px; grid-template-columns: 1.39fr 1fr; gap: 56px; }
  .contact-media { height: 479px; }
  .contact-copy h1, .contact-copy h2 { font-size: clamp(3.4rem, 4.7vw, 3.8rem); }
  .contact-copy > p:not(.eyebrow) { font-size: .84rem; line-height: 1.5; }
  .address-grid { margin: 14px 0; }
  .address-grid > div { min-height: 110px; padding: 14px; gap: 12px; }
  .address-grid .address-icon { width: 42px; height: 42px; }
  .address-grid span { font-size: .74rem; line-height: 1.5; }
  .address-grid strong { font-size: 1rem; }
  .contact-points { margin: 14px 0 16px; }
  .contact-points .pdf-icon { width: 26px; height: 26px; transform: none; }
  .contact-points span { font-size: .72rem; }
  .contact-points small { font-size: .64rem; }
  .contact-copy .button-row { max-width: 334px; gap: 14px; }
  .contact-copy .button-row .btn { min-height: 42px; font-size: .75rem; font-weight: 700; }
  .contact-copy .button-row .btn { padding-inline: 12px; }
  .contact-copy .button-row .pdf-icon { width: 20px; height: 20px; transform: none; }
}

@media (min-width: 992px) and (max-height: 800px) and (min-height: 680px) {
  .about-section .split-grid { align-items: stretch; }
  .about-section .section-copy {
    display: flex;
    height: calc(100svh - 116px);
    padding-top: 45px;
    flex-direction: column;
  }
  .about-section .stats-grid { margin-top: auto; }
}

@media (max-width: 991px) {
  html { scroll-padding-top: 78px; }
  .site-header {
    height: 78px;
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header-inner { justify-content: space-between; }
  .brand img { width: 150px; }
  .header-quote { margin-left: 0; }
  .mobile-nav-toggle { display: block; order: 3; padding: 4px; }
  .mobile-nav-toggle:focus-visible { outline: 2px solid var(--runo-red); outline-offset: 3px; }
  .site-nav {
    position: fixed;
    visibility: hidden;
    z-index: -1;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 24px;
    opacity: 0;
    background: rgba(20, 20, 20, .72);
    transition: opacity .2s ease, visibility .2s ease;
  }
  .site-nav.open { visibility: visible; z-index: 1001; opacity: 1; }
  .site-nav ul { display: block; padding: 12px 26px; border-radius: 15px; background: var(--white); }
  .site-nav a { padding: 18px 2px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav li:last-child a { border: 0; }
  .site-nav a::after { display: none; }
  .category-tabs-inner { flex-wrap: wrap; }
  .category-tabs-inner .tabs-scroll { width: 100%; }
  .catalog-country-switcher--catalog-tabs { margin: 0 0 8px auto; }
  .section { padding: 80px 0; }
  .about-section { padding: 64px 0 72px; }
  .hero-section { min-height: auto; padding: 52px 0 64px; }
  .hero-grid, .split-grid, .service-grid, .contact-grid, .seo-landing-grid { grid-template-columns: 1fr; }
  .seo-landing-panel { min-height: 260px; }
  .hero-copy { max-width: 720px; padding-left: 0; }
  .hero-copy h1 { font-size: clamp(2.8rem, 6.5vw, 3.5rem); line-height: 1.15; }
  .hero-title-line { transform: none; }
  .hero-copy .btn { padding-inline: 24px; font-size: .9rem; }
  .hero-media { height: 500px; }
  .about-media { height: auto; }
  .section-copy { max-width: 780px; }
  .about-section .section-copy { max-width: 780px; }
  .about-section .section-copy > p:not(.eyebrow) { font-size: 1rem; }
  .about-section .section-copy > .about-note { white-space: normal; }
  .about-section .stats-grid { max-width: 100%; }
  .catalog-panel { padding: 36px; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-media { min-height: 480px; order: -1; }
  .system-support-grid { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: repeat(5, 1fr); row-gap: 24px; }
  .kit-grid > div:nth-child(5), .kit-grid > div:last-child { border-right: 0; }
  .service-copy { max-width: 680px; }
  .contact-media { height: 580px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .category-tabs { top: 78px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-template-columns: 1fr; }
  .product-image { min-height: 240px; order: 1; }
  .product-body { padding: 22px 24px 26px; order: 2; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-gallery { min-height: 520px; }
  .product-slider, .product-slider .swiper-wrapper, .product-slider .swiper-slide { min-height: 520px; }
  .product-slider img { height: 430px; }
}

@media (max-width: 680px) {
  .site-container { width: calc(100% - 32px); }
  .about-section > .site-container { width: calc(100% - 32px); }
  .catalog-section > .site-container { width: calc(100% - 32px); }
  .header-quote { display: none; }
  .section { padding: 64px 0; }
  .about-section { padding: 48px 0 64px; }
  .hero-section { padding: 42px 0 60px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { font-size: clamp(2.65rem, 12vw, 3rem); }
  .hero-title-line { width: auto; white-space: normal; }
  .hero-lead { font-size: 1rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .hero-copy .button-row { grid-template-columns: 1fr; gap: 14px; }
  .hero-media { height: 390px; }
  .hero-media { border-radius: 18px; }
  .about-media { width: 100%; height: 420px; aspect-ratio: auto; }
  .location-card { right: 0; width: 180px; min-width: 180px; padding: 15px 18px; }
  .section-copy h1, .section-copy h2, .section-heading h2, .service-copy h1, .service-copy h2, .contact-copy h1, .contact-copy h2 { font-size: 3rem; }
  .stats-grid, .catalog-grid, .address-grid, .contact-points { grid-template-columns: 1fr; }
  .catalog-section { padding: 28px 0 44px; }
  .catalog-grid { padding: 30px 22px; gap: 38px; }
  .catalog-panel { padding: 28px 22px; border-radius: 16px; }
  .category-row, .system-list a { min-height: 72px; font-size: .92rem; }
  .feature-copy { padding: 38px 26px; }
  .feature-media { min-height: 350px; }
  .system-feature { padding-bottom: 64px; }
  .system-tabs-scroll a { min-height: 58px; padding-inline: 22px; }
  .system-tabs-scroll .system-tabs-back { padding-left: 0; }
  .system-application { padding: 24px; align-items: flex-start; }
  .kit-card { padding: 24px 18px; }
  .kit-grid { grid-template-columns: repeat(3, 1fr); }
  .kit-grid > div { padding: 0 8px; border-right: 0; }
  .kit-grid img { width: 54px; height: 54px; }
  .service-media, .service-media > img { min-height: 420px; }
  .service-values { padding: 18px 8px; }
  .service-values > span { padding: 0 8px; flex-direction: column; text-align: center; font-size: .65rem; }
  .contact-media { height: 470px; }
  .contact-points { gap: 12px; }
  .contact-copy .button-row { max-width: none; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { padding-right: 0; align-items: flex-start; flex-direction: column; gap: 5px; }
  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    opacity: .94;
  }
  .whatsapp-float img { width: 24px; height: 24px; }
  .analytics-consent { right: 12px; bottom: 12px; left: 12px; padding: 16px; align-items: stretch; flex-direction: column; }
  .analytics-consent > div { display: grid; grid-template-columns: 1fr 1fr; }
  .analytics-consent .btn { width: 100%; }
  .category-tabs { top: 78px; }
  .tabs-scroll { gap: 26px; }
  .detail-context-bar { margin-bottom: 20px; align-items: flex-start; flex-direction: column; gap: 4px; }
  .catalog-country-switcher--detail .switcher-trigger { padding-left: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-image { height: 220px; min-height: 220px; padding: 24px; order: 1; }
  .product-body { padding: 24px; order: 2; }
  .product-body h3 { font-size: 1.4rem; }
  .detail-section { padding-top: 20px; }
  .detail-gallery, .product-slider, .product-slider .swiper-wrapper, .product-slider .swiper-slide { min-height: 390px; }
  .product-slider .swiper-slide { padding: 28px; }
  .product-slider img { height: 330px; }
  .detail-copy { padding: 40px 26px; }
  .detail-copy h1 { font-size: 2.8rem; }
  .detail-actions { align-items: flex-start; flex-direction: column; }
  .seo-landing-section { padding: 54px 0 70px; }
  .seo-landing-grid { grid-template-columns: 1fr; }
  .seo-landing-copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .seo-landing-panel { min-height: 250px; padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
