:root {
  --ink: #17202a;
  --ink-soft: #2d3a47;
  --steel: #657484;
  --line: #d8e0e8;
  --paper: #f6f8fb;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #a9151b;
  --navy: #071c35;
  --navy-2: #0c2d52;
  --blue: #1968a8;
  --amber: #e3a72f;
  --blue-wash: #f0f7fd;
  --blue-wash-2: #e7f2fb;
  --shadow: 0 18px 55px rgba(15, 25, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-wash);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

section[id] {
  scroll-margin-top: 136px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(7, 28, 53, 0.97);
  box-shadow: 0 12px 35px rgba(7, 28, 53, 0.22);
  transition: padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 170px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.2rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 34%, rgba(177, 219, 255, 0.2), transparent 28%),
    radial-gradient(circle at 50% 74%, rgba(25, 104, 168, 0.2), transparent 34%),
    linear-gradient(108deg, #041328 0%, #061a33 38%, #0b335e 72%, #6f9dc0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 19, 40, 0.98) 0%, rgba(4, 19, 40, 0.92) 34%, rgba(4, 19, 40, 0.44) 62%, rgba(4, 19, 40, 0.05) 100%),
    linear-gradient(0deg, rgba(4, 19, 40, 0.42), rgba(4, 19, 40, 0) 46%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 48px;
  width: min(1280px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 104px 0 118px;
}

.hero-media {
  position: relative;
  z-index: 0;
  justify-self: end;
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-top: -76px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(227, 242, 255, 0.38) 0%, rgba(78, 151, 211, 0.2) 38%, rgba(7, 28, 53, 0) 70%);
  filter: blur(2px);
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: scale(1.24);
  filter:
    drop-shadow(0 0 20px rgba(181, 225, 255, 0.52))
    drop-shadow(0 0 52px rgba(32, 126, 200, 0.3))
    drop-shadow(0 32px 28px rgba(0, 0, 0, 0.34));
  transition: opacity 520ms ease, transform 900ms ease, filter 900ms ease;
}

.hero-media img.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(1.18);
}

.hero-content {
  z-index: 2;
  min-width: 0;
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo {
  width: min(292px, 88vw);
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero h1 {
  width: 100%;
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.35rem, 3.35vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  width: 100%;
  max-width: 590px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button.compact {
  width: fit-content;
  margin-top: 20px;
}

.brand-strip {
  position: absolute;
  left: calc(50% + min(260px, 25vw));
  right: auto;
  bottom: 120px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(560px, 42vw, calc(100% - 540px));
  transform: translateX(-50%);
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(4, 19, 40, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.brand-strip span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 56px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease;
}

.brand-strip a:hover,
.brand-strip a:focus-visible {
  transform: translateY(-2px);
}

.brand-strip img {
  width: auto;
  max-width: 112px;
  max-height: 48px;
  object-fit: contain;
}

.band {
  background:
    radial-gradient(circle at 84% 8%, rgba(25, 104, 168, 0.13), rgba(25, 104, 168, 0) 32%),
    linear-gradient(180deg, var(--blue-wash) 0%, var(--blue-wash-2) 100%);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr) minmax(220px, 0.66fr);
  gap: 36px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  max-width: 1040px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.intro-copy p {
  color: var(--steel);
}

.section-heading h2 + p {
  margin-top: 12px;
}

.intro-copy p {
  margin: 0 0 22px;
  font-size: 1.02rem;
}

.company-manifesto {
  color: var(--ink-soft);
  font-weight: 800;
}

.intro-policy {
  justify-self: end;
  width: 100%;
  max-width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.intro-policy img {
  width: 100%;
  border-radius: 4px;
}

.company-differentials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  padding-top: 8px;
}

.company-differentials-heading p:not(.section-kicker),
.company-differential-grid p {
  color: var(--steel);
}

.company-differentials-heading p:not(.section-kicker) {
  margin: 0;
}

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

.company-differential-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.company-differential-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.company-differential-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.divisions {
  border-top: 1px solid rgba(25, 104, 168, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 14% 10%, rgba(25, 104, 168, 0.12), rgba(25, 104, 168, 0) 30%),
    linear-gradient(180deg, #f8fcff 0%, #edf6fd 52%, #edf6fd 100%);
}

.technical-info {
  border-top: 1px solid rgba(25, 104, 168, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 14% 10%, rgba(25, 104, 168, 0.12), rgba(25, 104, 168, 0) 30%),
    linear-gradient(180deg, #f8fcff 0%, #edf6fd 52%, #edf6fd 100%);
}

.intro {
  border-top: 1px solid rgba(25, 104, 168, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 88% 14%, rgba(25, 104, 168, 0.13), rgba(25, 104, 168, 0) 34%),
    radial-gradient(circle at 10% 85%, rgba(7, 28, 53, 0.075), rgba(7, 28, 53, 0) 30%),
    linear-gradient(180deg, #f4faff 0%, #e3f0fb 100%);
}

.division-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.division-content {
  min-width: 0;
}

.division-tabs {
  display: grid;
  position: sticky;
  top: 104px;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.division-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.division-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 180ms ease, opacity 180ms ease;
}

.division-card span {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(0deg, rgba(7, 28, 53, 0.94), rgba(7, 28, 53, 0));
  font-weight: 900;
  text-align: left;
}

.division-card:hover img,
.division-card.is-active img {
  opacity: 0.92;
  transform: scale(1.04);
}

.division-card.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 3px var(--red), 0 16px 34px rgba(7, 28, 53, 0.16);
}

.division-switcher {
  position: sticky;
  top: 92px;
  z-index: 18;
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 28, 53, 0.96);
  box-shadow: 0 18px 38px rgba(7, 28, 53, 0.2);
}

.division-switcher span {
  flex: 0 0 auto;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.division-switcher button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.division-switcher button:hover,
.division-switcher button:focus-visible,
.division-switcher button.is-active {
  border-color: var(--red);
  background: var(--red);
}

.division-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  scroll-margin-top: 128px;
}

.division-detail[hidden] {
  display: none;
}

.detail-media {
  display: none;
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.12;
}

.detail-copy h3[id],
.detail-copy h3 {
  scroll-margin-top: 176px;
}

.detail-copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.detail-columns h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.detail-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--steel);
}

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

.brochure-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy-2);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.brochure-list a::after {
  content: "PDF";
  flex: 0 0 auto;
  min-width: 30px;
  border-radius: 4px;
  padding: 2px 4px;
  color: var(--white);
  background: var(--red);
  font-size: 0.66rem;
  line-height: 1.1;
  text-align: center;
}

.brochure-list a[href$=".mp4"]::after {
  content: "VIDEO";
  min-width: 42px;
  background: var(--blue);
}

.brochure-list a:hover,
.brochure-list a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.catalog-back-mobile {
  display: none;
}

.technical-disclosure {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.technical-disclosure summary {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  justify-content: stretch;
  gap: 14px;
  width: min(100%, 700px);
  min-height: 60px;
  margin: 0 auto;
  border: 1px solid #c9e2f7;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--navy);
  background: #f3f9ff;
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.technical-disclosure summary:hover,
.technical-disclosure summary:focus-visible {
  border-color: #98c4ea;
  background: #edf7ff;
  box-shadow: 0 14px 30px rgba(7, 28, 53, 0.1);
}

.technical-disclosure summary::-webkit-details-marker {
  display: none;
}

.technical-disclosure summary::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
}

.technical-disclosure summary::after {
  content: "";
  display: block;
  flex: 0 0 34px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--blue);
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 2px, 2px 14px;
}

.technical-disclosure[open] summary::after {
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 14px 2px;
}

.technical-disclosure summary span {
  grid-column: 2;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
}

.technical-disclosure summary span::after {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 22px;
  border-radius: 6px;
  padding: 0 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.technical-disclosure-panel {
  padding: 22px 0 0;
}

.technical-disclosure[open] .technical-disclosure-panel {
  animation: technicalReveal 220ms ease both;
}

.technical-disclosure .technical-table {
  box-shadow: none;
}

.technical-disclosure .technical-toolbar {
  margin: 0 0 18px;
}

@keyframes technicalReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .technical-disclosure[open] .technical-disclosure-panel {
    animation: none;
  }
}

.technical-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 28, 53, 0.08);
}

.technical-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: -8px 0 18px;
}

.technical-toolbar label {
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-toolbar select {
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 800;
}

.technical-table-head,
.technical-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.technical-table-head {
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-row {
  color: var(--ink);
  border-top: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.technical-row:hover,
.technical-row:focus-visible {
  color: var(--red);
  background: #f8fbff;
}

.technical-title {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.technical-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.technical-title strong,
.technical-title small {
  overflow-wrap: anywhere;
}

.technical-title strong {
  font-size: 0.98rem;
  line-height: 1.28;
}

.technical-title small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
}

.technical-kind {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--navy-2);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
}

.technical-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 28, 53, 0.98), rgba(7, 28, 53, 0.9)),
    url("../assets/img/demo/adaptadores.png") center / cover;
}

.contact h2,
.contact h3 {
  color: var(--white);
}

.contact p,
.contact a {
  color: rgba(255, 255, 255, 0.84);
}

.contact-heading {
  max-width: 820px;
  justify-self: center;
  text-align: center;
}

.contact-heading h2 {
  color: var(--white);
}

.form-heading {
  width: min(760px, 100%);
  justify-self: center;
  text-align: center;
}

.form-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.form-heading p {
  max-width: 620px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.department-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  min-width: 0;
  padding: 30px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.department-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.department-avatar::before {
  content: "";
  width: 48px;
  height: 48px;
  background: #4d545c;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4.6 4.6 0 1 0 0-9.2 4.6 4.6 0 0 0 0 9.2Zm0 2.1c-4.2 0-7.6 2.2-7.6 5v1.3h15.2v-1.3c0-2.8-3.4-5-7.6-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4.6 4.6 0 1 0 0-9.2 4.6 4.6 0 0 0 0 9.2Zm0 2.1c-4.2 0-7.6 2.2-7.6 5v1.3h15.2v-1.3c0-2.8-3.4-5-7.6-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.department-card h3 {
  margin: 4px 0 2px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.department-link {
  display: grid;
  gap: 2px;
  width: 100%;
  min-height: 50px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.department-link span,
.department-link small {
  display: block;
  overflow-wrap: anywhere;
}

.department-link span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.department-link small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.department-link:hover,
.department-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.department-link.is-placeholder {
  opacity: 0.65;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form .form-honeypot {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-status.is-success {
  color: #b8f5d0;
}

.form-status.is-error {
  color: #ffd0d0;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

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

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 0.85fr;
  gap: 24px;
  padding: 28px 0;
}

.footer-inner img {
  width: 145px;
  margin-bottom: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-map-link {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  align-items: center;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: var(--amber);
}

.footer-map-link::before {
  content: "";
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.5a7 7 0 0 0-7 7c0 5.2 7 12 7 12s7-6.8 7-12a7 7 0 0 0-7-7Zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.5a7 7 0 0 0-7 7c0 5.2 7 12 7 12s7-6.8 7-12a7 7 0 0 0-7-7Zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-map-link span {
  color: var(--amber);
  font-weight: 900;
}

.footer-map-link small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-data,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-data {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-qr {
  width: 112px;
  max-width: 100%;
  border-radius: 8px;
  background: var(--white);
}

.footer-links {
  justify-items: end;
}

.footer-links a {
  color: var(--amber);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.instagram-link::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.1a4.9 4.9 0 1 1 0 9.8 4.9 4.9 0 0 1 0-9.8Zm0 2a2.9 2.9 0 1 0 0 5.8 2.9 2.9 0 0 0 0-5.8Zm5.2-2.4a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.1a4.9 4.9 0 1 1 0 9.8 4.9 4.9 0 0 1 0-9.8Zm0 2a2.9 2.9 0 1 0 0 5.8 2.9 2.9 0 0 0 0-5.8Zm5.2-2.4a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(4, 19, 40, 0.88);
}

.image-lightbox img {
  width: auto;
  max-width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.image-lightbox video {
  width: min(980px, 92vw);
  max-height: 84vh;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  padding: 0;
  color: var(--white);
  background: rgba(7, 28, 53, 0.82);
  font: inherit;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--red);
}

.float-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #1fa855;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.float-whatsapp svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: currentColor;
  overflow: visible;
}

.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  gap: 8px;
  width: min(320px, calc(100vw - 44px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 28, 53, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.whatsapp-menu p {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-menu a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border: 1px solid rgba(179, 244, 204, 0.7);
  border-radius: 8px;
  color: #073b2f;
  background: #d9f8e7;
  font-weight: 900;
}

.whatsapp-menu small {
  color: rgba(7, 59, 47, 0.72);
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    justify-content: stretch;
    padding: 12px 18px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .main-nav a {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100% - 48px, 900px);
    min-height: auto;
    padding: 108px 0 150px;
  }

  .hero-content {
    max-width: 780px;
    margin-left: 0;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 760px);
    min-height: 0;
  }

  .hero-media img {
    transform: scale(1);
  }

  .hero-media img.is-changing {
    transform: translateY(8px) scale(0.94);
  }

  .hero-media::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(214, 236, 255, 0.28) 0%, rgba(78, 151, 211, 0.14) 40%, rgba(7, 28, 53, 0) 70%);
  }

  .brand-strip {
    left: 50%;
    right: auto;
    bottom: 88px;
    width: min(520px, calc(100% - 48px));
    min-width: 0;
    transform: translateX(-50%);
  }

  .intro-grid,
  .contact-grid,
  .division-detail {
    grid-template-columns: 1fr;
  }

  .company-differentials {
    grid-template-columns: 1fr;
  }

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

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

  .division-tabs {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 18px;
  }

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

  .division-switcher {
    top: 84px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .intro-policy {
    justify-self: start;
    max-width: 360px;
  }

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

@media (max-width: 700px) {
  .brand img {
    width: 142px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    width: min(100% - 32px, 1120px);
    gap: 22px;
    padding: 96px 0 24px;
  }

  .hero-logo {
    width: min(100%, 360px);
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 1.86rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 26px;
  }

  .hero-media {
    width: 100%;
    height: clamp(230px, 58vw, 310px);
    aspect-ratio: auto;
    min-height: 0;
    margin: 46px 0 44px;
  }

  .hero-media img {
    object-position: center;
    transform: scale(1.2);
  }

  .hero-media img.is-changing {
    transform: translateY(8px) scale(1.14);
  }

  .hero-media img.is-slide-1 {
    transform: scale(1.46);
  }

  .hero-media img.is-slide-2 {
    transform: scale(0.94);
  }

  .hero-media img.is-slide-3 {
    transform: scale(0.92);
  }

  .hero-media img.is-slide-4 {
    transform: scale(0.9);
  }

  .hero-media img.is-slide-1.is-changing {
    transform: translateY(8px) scale(1.36);
  }

  .hero-media img.is-slide-2.is-changing {
    transform: translateY(8px) scale(0.88);
  }

  .hero-media img.is-slide-3.is-changing {
    transform: translateY(8px) scale(1.02);
  }

  .hero-media img.is-slide-4.is-changing {
    transform: translateY(8px) scale(0.84);
  }

  .button {
    width: 100%;
  }

  .brand-strip {
    position: relative;
    left: auto;
    right: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    transform: none;
    bottom: auto;
    gap: 10px;
    overflow: auto;
    margin: 2px 16px 26px;
  }

  .brand-strip span {
    min-width: 150px;
  }

  .brand-strip a {
    min-width: 76px;
  }

  .brand-strip img {
    max-width: 66px;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 32px, 1120px);
  }

  .section-inner {
    padding: 56px 0;
  }

  h2 {
    font-size: 1.82rem;
  }

  .division-tabs,
  .detail-columns,
  .department-grid,
  .company-differential-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .division-tabs {
    gap: 12px;
  }

  .division-switcher {
    align-items: stretch;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px;
  }

  .division-switcher span {
    display: none;
  }

  .division-switcher button {
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .division-card {
    min-height: 150px;
  }

  .division-card img {
    height: 150px;
  }

  .catalog-back-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    min-height: 44px;
    margin: 12px 0 0;
    border: 1px solid rgba(7, 28, 53, 0.14);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(7, 28, 53, 0.1);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .catalog-back-mobile span {
    font-size: 1rem;
    line-height: 1;
  }

  .division-detail {
    padding: 16px;
    scroll-margin-top: 112px;
  }

  .technical-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .technical-table-head {
    display: none;
  }

  .technical-row {
    grid-template-columns: 1fr;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(7, 28, 53, 0.08);
  }

  .technical-download {
    justify-self: start;
  }

  .technical-disclosure summary {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 58px;
    padding: 14px;
    font-size: 0.95rem;
  }

  .technical-disclosure summary::before,
  .technical-disclosure summary::after {
    width: 28px;
    height: 28px;
  }

  .technical-disclosure-panel {
    padding: 18px 0 0;
  }

  .technical-toolbar {
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

  .technical-toolbar select {
    width: 100%;
  }

  .detail-copy h3 {
    font-size: 1.58rem;
  }

  .contact-form {
    padding: 18px;
  }

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

  .whatsapp-menu {
    width: min(310px, calc(100vw - 32px));
  }

  .footer-links {
    justify-items: start;
  }

  .footer-data {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.68rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }
}
