/* =========================
   VARIABLES
   ========================= */

:root {
  --color-primary: #1c4668;
  --color-accent: #008dfd;
  --color-primary-75: rgba(28, 70, 104, 0.75);
  --color-primary-50: rgba(28, 70, 104, 0.5);
  --color-primary-15: rgba(28, 70, 104, 0.15);
  --color-primary-08: rgba(28, 70, 104, 0.08);
  --color-primary-03: rgba(28, 70, 104, 0.03);
  --color-text: #4a4a4a;
  --color-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f5f5;
  --color-bg-blue: #e6eff6;
  --color-bg-blue-light: #def0fe;
  --color-border: #e8e8e8;
  --color-white: #ffffff;
  --topbar-height: 2.5rem;
  --header-height: 6.25rem;
  --content-max-width: 1500px;
  --text-max-width: 47rem;
  --section-space: clamp(2.5rem, 4vw, 3.5rem);
  --radius-pill: 9999px;
  --radius-small: 0.75rem;
  --radius-medium: 1.5rem;
  --radius-large: 2.25rem;
}

/* =========================
   BASE / RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

body,
button {
  font-family: Montserrat, Arial, sans-serif;
}

body {
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(2.4rem, 3.8vw, 4.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  line-height: 1;
}

p {
  line-height: 1.75;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 1.25rem;
}

.section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-heading {
  max-width: 42rem;
}

.section-heading--wide {
  max-width: 65rem;
}

.section-heading > p:last-child {
  max-width: 42rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 1.75rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--color-accent);
}

/* =========================
   TOPBAR / HEADER
   ========================= */

.site-chrome {
  position: sticky;
  z-index: 20;
  top: 0;
}

.topbar {
  max-height: var(--topbar-height);
  overflow: hidden;
  padding: 0 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
  transition:
    max-height 240ms ease,
    opacity 180ms ease;
}

.topbar__inner {
  display: flex;
  width: 100%;
  max-width: var(--content-max-width);
  min-height: var(--topbar-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar__contacts {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.topbar__link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

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

.topbar__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-chrome.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--color-primary-08);
  background: var(--color-bg);
  box-shadow: 0 4px 18px var(--color-primary-03);
}

.site-header__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: var(--content-max-width);
  min-height: 4.75rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-header__logo {
  width: 3.75rem;
  height: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-primary);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.language-switcher__item {
  padding: 0.4rem 0;
  opacity: 0.5;
}

.language-switcher__item.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
  opacity: 1;
}

.language-switcher a:hover {
  opacity: 1;
}

.site-navigation {
  position: absolute;
  display: none;
  width: calc(100% + 2.5rem);
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  top: calc(100% + 0.75rem);
  left: -1.25rem;
  flex-direction: column;
  background: var(--color-bg);
  box-shadow: 0 12px 24px var(--color-primary-08);
}

.site-navigation.is-open {
  display: flex;
}

.site-navigation > a:not(.site-header__cta) {
  padding: 0.75rem 0;
  color: var(--color-primary-75);
  font-size: 1rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-navigation > a:not(.site-header__cta):hover {
  color: var(--color-primary);
}

.site-navigation-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  border: 0;
  place-content: center;
  gap: 0.25rem;
  background: transparent;
  cursor: pointer;
}

.site-navigation-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--color-primary);
}

.site-header__cta,
.button {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.site-header__cta,
.button--primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.site-navigation .site-header__cta {
  align-self: flex-start;
}

.button--accent {
  border-color: transparent;
  background: var(--color-accent);
  color: var(--color-white);
}

.site-header__cta:hover,
.button--primary:hover {
  background: var(--color-text);
  border-color: var(--color-text);
}

.button--accent:hover {
  border-color: transparent;
  background: var(--color-primary);
}

.button--secondary {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-primary);
}

.button--secondary:hover {
  border-color: var(--color-primary);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: auto;
  overflow: hidden;
  padding: clamp(2.5rem, 4svh, 3.5rem) 1.25rem;
  align-items: center;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 255, 255, 0.12),
      transparent 38%
    ),
    radial-gradient(
      circle at 18% 88%,
      rgba(255, 255, 255, 0.045),
      transparent 42%
    ),
    linear-gradient(145deg, var(--color-primary), var(--color-primary-75));
  color: var(--color-white);
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: min(52rem, 78vw);
  height: min(52rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
  top: -32%;
  right: -14%;
  animation: hero-ambient-shift 18s ease-in-out infinite;
  transform-origin: center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: min(64rem, 90vw);
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
  content: "";
  right: -18%;
  bottom: -15%;
  transform: rotate(-8deg);
}

@keyframes hero-ambient-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-6px, 8px, 0) scale(1.012);
  }
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero__content {
  max-width: var(--text-max-width);
}

.hero__title {
  color: var(--color-white);
  max-width: 45rem;
  font-size: clamp(2.7rem, 4.2vw, 4.75rem);
  font-weight: 700;
  line-height: 0.96;
}

.hero__intro,
.hero__description {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.hero__intro {
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero__description {
  margin-top: 0.9rem;
}

.hero__trust {
  display: flex;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero__trust p::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--color-accent);
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero__eyebrow .eyebrow__line {
  background: rgba(255, 255, 255, 0.48);
}

.hero__actions {
  display: flex;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__visual {
  display: flex;
  width: 100%;
  max-width: 46rem;
  min-width: 0;
  margin: 0 auto;
  align-items: center;
}

/* Hero slider */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: clamp(0.75rem, 1.25vw, 1.125rem);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.14);
  touch-action: pan-y;
}

.hero-slider__slide {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  inset: 0;
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.hero-slider__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider__dots {
  position: absolute;
  z-index: 2;
  display: flex;
  right: 0.75rem;
  bottom: 0.65rem;
  gap: 0.15rem;
}

.hero-slider__dot {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.hero-slider__dot::before {
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(28, 70, 104, 0.35);
  content: "";
  transition: background-color 180ms ease;
}

.hero-slider__dot.is-active::before {
  background: var(--color-white);
}

@supports not (aspect-ratio: 4 / 3) {
  .hero-slider::before {
    display: block;
    padding-top: 75%;
    content: "";
  }
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.hero .button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   DISTRIBUTOR / REGULATORY BAND
   ========================= */

.distributor-band {
  padding: 0 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
}

.distributor-band__inner {
  display: grid;
}

.distributor-band__item {
  min-width: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.distributor-band__item:first-child {
  border-top: 0;
}

.distributor-band__item--primary {
  padding-right: 1rem;
}

.distributor-band__label {
  margin-bottom: 0.4rem;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.distributor-band__title {
  color: var(--color-white);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
}

.distributor-band__text {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.distributor-band .button {
  margin-top: 0.85rem;
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--color-white);
}

.distributor-band .button:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   NEEDS
   ========================= */

.needs {
  background: var(--color-bg);
}

.needs__list {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid var(--color-border);
}

.need-link {
  display: grid;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.need-link:hover {
  background: var(--color-primary-08);
  color: var(--color-primary);
}

.need-link__number {
  color: var(--color-accent);
  font-size: 0.7rem;
}

.need-link__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
}

.need-link__area {
  color: var(--color-primary-75);
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.need-link__product {
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.need-link__arrow {
  color: var(--color-primary-50);
  font-size: 1.25rem;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.need-link:hover .need-link__arrow {
  transform: rotate(0deg);
}

/* =========================
   FEATURED SOLUTIONS
   ========================= */

.solution-feature--blue,
.solution-feature--soft {
  background: var(--color-bg-soft);
}

.split-layout {
  display: block;
}

.solution-feature__visual {
  width: 100%;
  min-width: 0;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.solution-feature__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 1.25vw, 1.125rem);
}

.solution-feature__content {
  max-width: 54rem;
}

.solution-icon {
  display: block;
  width: 5.625rem;
  max-width: 5.625rem;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  min-width: 0;
}

.solution-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.solution-icon-frame {
  display: grid;
  width: clamp(4.5rem, 8vw, 7.625rem);
  height: clamp(4.5rem, 8vw, 7.625rem);
  flex: 0 0 auto;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(28, 70, 104, 0.15);
  border-radius: 10px;
  background: transparent;
}

.solution-icon-frame .solution-icon {
  width: 75%;
  max-width: 75%;
  height: auto;
  min-width: 0;
}

.solution-heading__content {
  min-width: 0;
}

.solution-heading__content .eyebrow {
  margin-bottom: 0.25rem;
}

.solution-feature__lead {
  margin-top: 0.875rem;
  color: var(--color-primary-75);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.solution-feature__content > p:not(.eyebrow, .solution-feature__lead) {
  margin-top: 1rem;
}

.feature-tags {
  display: flex;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-tags li {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  color: var(--color-primary-75);
  font-size: 0.75rem;
  font-weight: 600;
}

.solution-feature__cta {
  margin-top: 1.5rem;
}

/* =========================
   SPECIALIZED SOLUTIONS
   ========================= */

.specialized {
  padding-top: clamp(2.25rem, 3.5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 3.5vw, 3.25rem);
}

.specialized__list {
  margin-top: clamp(1.75rem, 2.5vw, 2.5rem);
  border-top: 1px solid var(--color-border);
}

.specialized-item {
  display: grid;
  padding: clamp(1.5rem, 2vw, 2rem) 0;
  border-bottom: 1px solid var(--color-border);
  gap: 2rem;
}

.specialized-item__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.specialized-item__content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.specialized-item__content .feature-tags {
  margin-top: 1rem;
}

.specialized-item__title {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.specialized-item__area {
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.specialized-item__body {
  display: flex;
  max-width: 46rem;
  flex-direction: column;
  justify-content: center;
}

.specialized-item__body > p:first-child {
  color: var(--color-primary-75);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.specialized-media {
  display: grid;
  min-width: 0;
  margin-top: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.specialized-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: clamp(0.75rem, 1.25vw, 1.125rem);
  object-fit: cover;
}

/* =========================
   HARDWARE
   ========================= */

.hardware {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--color-bg-blue);
}

.hardware__layout {
  display: grid;
  gap: 2rem;
}

.hardware__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-border);
}

.hardware__products li {
  min-width: 0;
  padding: 1rem;
  background: var(--color-bg);
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1.5vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* =========================
   SECTORS
   ========================= */

.sectors {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.sectors__grid {
  display: grid;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  border-top: 1px solid var(--color-border);
}

.sector-link {
  display: flex;
  min-width: 0;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sector-link span {
  color: var(--color-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

/* =========================
   ECOSYSTEM
   ========================= */

.ecosystem {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--color-bg-soft);
}

.ecosystem__layout {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.5rem);
}

.ecosystem-concept {
  display: grid;
  padding: clamp(0.75rem, 1.75vw, 1.5rem);
  border-radius: var(--radius-large);
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  background: var(--color-primary-08);
}

.ecosystem-concept > span {
  position: relative;
  display: grid;
  min-height: 4rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  place-items: center;
  background: var(--color-bg);
  color: var(--color-primary-75);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.ecosystem-concept > span + span::before {
  position: absolute;
  content: "↓";
  top: -2rem;
  left: 50%;
  color: var(--color-primary-50);
  transform: translateX(-50%);
}

.scale-step__icon {
  width: clamp(6.25rem, 30vw, 8.75rem);
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

/* =========================
   GLOBAL FOOTER: CONTACT
   ========================= */

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 34%
    ),
    var(--color-primary);
  color: var(--color-white);
}

.contact-section::before {
  position: absolute;
  z-index: -1;
  width: min(34rem, 65vw);
  height: min(34rem, 65vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  right: -14%;
  bottom: -70%;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

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

.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section .eyebrow__line {
  background: rgba(255, 255, 255, 0.48);
}

.contact-section__content > p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.contact-details {
  max-width: 38rem;
  margin-top: 0.875rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.contact-details p {
  display: grid;
  margin-top: 0.85rem;
  gap: 0.15rem;
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-details .contact-details__name {
  margin-top: 0;
  color: var(--color-white);
  font-weight: 700;
}

.contact-details__grid {
  margin-top: 0.85rem;
}

.contact-details__column p {
  margin-top: 0.6rem;
}

.contact-details__column p:first-child {
  margin-top: 0;
}

.contact-details__column + .contact-details__column {
  margin-top: 0.6rem;
}

.contact-detail__label {
  position: relative;
  display: block;
  padding-left: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail__label::before {
  position: absolute;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contact-detail__value {
  display: block;
  margin-left: 0.9rem;
}

.contact-detail--social {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  line-height: 1.65;
}

.social-links {
  display: flex;
  margin-top: 0.3rem;
  align-items: center;
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  stroke: none;
}

.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.contact-form {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: var(--radius-medium);
  background: var(--color-bg);
  color: var(--color-text);
}

.form-grid {
  display: grid;
  gap: 0.8rem 1rem;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-primary-75);
  font-size: 0.72rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  font-size: 0.9rem;
}

.form-field textarea {
  height: 6.5rem;
  min-height: 6.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary-50);
  outline: 3px solid var(--color-primary-15);
}

.form-consent {
  display: flex;
  margin-top: 1.25rem;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-text);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}

.form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.recaptcha-notice {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact-form__submit {
  margin-top: 1.25rem;
  cursor: pointer;
}

.form-status {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
}

.form-status--success {
  background: var(--color-bg-blue);
  color: var(--color-primary);
}

.form-status--error {
  border: 1px solid var(--color-primary-15);
  background: var(--color-bg-soft);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* =========================
   GLOBAL FOOTER: LEGAL BAR
   ========================= */

.site-footer__legal {
  padding: 1rem 1.25rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    var(--color-primary);
  color: var(--color-white);
}

.site-footer__legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer__copyright {
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.8rem;
}

.site-footer__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* =========================
   GLOBAL FLOATING CONTROLS
   ========================= */

.floating-controls {
  position: fixed;
  z-index: 15;
  display: flex;
  right: max(0.5rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.floating-control {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.floating-control:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.floating-control--top {
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-control--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-control--whatsapp {
  background: #25d366;
}

.floating-control svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-control--whatsapp svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  stroke: none;
}

/* =========================
   LEGAL PAGES
   ========================= */

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  background: var(--color-bg-blue);
}

.legal-hero__inner,
.legal-content {
  width: 100%;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1;
  text-wrap: balance;
}

.legal-content {
  padding: clamp(3.5rem, 7vw, 6.5rem) 1.25rem;
  overflow-wrap: anywhere;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 2.75rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.legal-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-content h4 {
  font-size: 1rem;
}

.legal-content p,
.legal-content address,
.legal-content ul {
  margin-top: 1rem;
}

.legal-content address {
  font-style: normal;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.legal-service {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.legal-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
}

.legal-content table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  font-size: 0.82rem;
  line-height: 1.55;
}

.legal-content th,
.legal-content td {
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (min-width: 640px) {
  .section,
  .hero,
  .topbar,
  .site-header,
  .site-footer__legal,
  .distributor-band,
  .legal-hero {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .legal-content {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .site-footer__legal-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
  }

  .scale-step__icon {
    width: clamp(7.5rem, 20vw, 10rem);
  }

  .site-footer__nav {
    justify-content: flex-end;
  }

  .floating-control {
    width: 3.25rem;
    height: 3.25rem;
  }

  .site-header__actions {
    gap: 1rem;
  }

  .topbar__contacts {
    width: auto;
    justify-content: flex-start;
    gap: 2rem;
  }

  .site-header__logo {
    width: 5rem;
  }

  .site-header__cta,
  .button {
    min-height: 3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-size: 0.875rem;
  }

  .need-link {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  }

  .need-link__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.65fr);
    align-items: center;
    gap: 2rem;
  }

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

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

  .ecosystem-concept {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .ecosystem-concept > span + span::before {
    top: 50%;
    left: -1rem;
    content: "→";
    transform: translate(-50%, -50%);
  }

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

  .form-field--span-2,
  .form-field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .hero__title {
    white-space: nowrap;
  }

  .hero__title-accent {
    display: block;
  }

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

  .distributor-band__item {
    padding: 1.35rem clamp(1.25rem, 2.5vw, 2rem);
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .distributor-band__item:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .scale-step__icon {
    width: clamp(8.75rem, 12vw, 11.875rem);
  }

  .needs .container {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .needs__list {
    margin-top: 0;
  }

  .ecosystem__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero {
    min-height: calc(100vh - var(--topbar-height) - var(--header-height));
    min-height: calc(100svh - var(--topbar-height) - var(--header-height));
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(3rem, 5vw, 5rem);
  }

  .hero__visual {
    max-width: none;
    margin: 0;
  }

  .split-layout--visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 5vw, 5rem);
  }

  .split-layout--visual .solution-feature__visual {
    margin-top: 0;
  }

  .split-layout--visual.split-layout--reverse .solution-feature__content {
    order: 2;
  }

  .specialized-item {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  }

  .hardware__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .hardware__products {
    grid-column: 2;
  }

  .contact-layout {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .contact-details__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .contact-details__column + .contact-details__column {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-field--span-2 {
    grid-column: span 2;
  }

  .form-field--full {
    grid-column: 1 / -1;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-navigation {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 2.25rem);
    background: transparent;
    box-shadow: none;
  }

  .site-navigation > a:not(.site-header__cta) {
    padding: 0.5rem 0;
    white-space: nowrap;
  }

  .site-navigation .site-header__cta {
    align-self: center;
    white-space: nowrap;
  }

  .site-navigation-toggle {
    display: none;
  }
}

@media (min-width: 1280px) {
  .section,
  .hero,
  .topbar,
  .site-header,
  .site-footer__legal,
  .distributor-band,
  .legal-hero {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .sectors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 4rem;
  }
}

@media (max-width: 479px) {
  .hero__trust p {
    width: 100%;
  }

  .topbar {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .site-header {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .site-header__inner {
    gap: 0.5rem;
  }

  .site-header__actions {
    gap: 0.25rem;
  }

  .site-navigation {
    width: calc(100% + 1.5rem);
    left: -0.75rem;
  }

  .site-header__cta {
    min-height: 2.5rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .site-navigation-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .topbar__contacts {
    gap: 0.5rem;
  }

  .topbar__link {
    gap: 0.375rem;
    font-size: 0.6875rem;
  }

  .topbar__icon {
    width: 1rem;
    height: 1rem;
  }

  .solution-icon-frame .solution-icon {
    width: 82%;
    max-width: 82%;
  }

  .specialized-item__heading > .solution-icon {
    width: 5rem;
    max-width: 5rem;
  }

  .specialized-item h3 {
    font-size: clamp(1.5rem, 6.8vw, 1.625rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .sector-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
}

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

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