:root {
  color-scheme: dark;
  --bg: #050a0e;
  --surface: #111e27;
  --surface-light: #e6ebee;
  --text: #f6f8f9;
  --muted: #b9c5cc;
  --line: rgba(210, 229, 239, 0.15);
  --accent: #4f9bc8;
  --accent-soft: #bddaea;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family:
    Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1440px, calc(100% - 96px));
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 18px;
}

.brand__mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
}

.brand__mark img {
  display: block;
  width: 76px;
  max-width: 100%;
  height: 76px;
  object-fit: contain;
  image-rendering: auto;
}

.brand__wording {
  position: relative;
  display: flex;
  padding-left: 20px;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.brand__wording::before {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #87a5b6 22%, #438eba 70%, transparent);
  content: "";
}

.brand__name {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.brand__descriptor {
  color: #d0e0e8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 52px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #b7bdc2;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: #fff;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 64px) max(48px, calc((100vw - 1440px) / 2 + 48px)) 54px;
  grid-template-columns: minmax(390px, 0.88fr) minmax(600px, 1.22fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 73% 49%, rgba(39, 124, 169, 0.27) 0%, rgba(20, 65, 88, 0.12) 26%, transparent 53%),
    radial-gradient(ellipse at 69% 89%, rgba(188, 211, 222, 0.07), transparent 31%),
    linear-gradient(90deg, rgba(2, 6, 9, 0.68) 0%, transparent 47%, rgba(1, 5, 8, 0.12) 100%),
    linear-gradient(116deg, #03080c 0%, #091720 50%, #020609 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(212, 232, 243, 0.035) 50%, transparent 50.1%),
    linear-gradient(rgba(212, 232, 243, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 96px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 42%, rgba(222, 234, 240, 0.09) 49%, transparent 55%),
    linear-gradient(169deg, transparent 53%, rgba(61, 151, 198, 0.11) 61%, transparent 68%),
    repeating-linear-gradient(90deg, transparent 0 179px, rgba(205, 225, 235, 0.012) 180px);
  content: "";
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background:
    linear-gradient(128deg, transparent 32%, rgba(210, 226, 234, 0.065) 48%, transparent 62%),
    linear-gradient(166deg, transparent 48%, rgba(58, 137, 180, 0.085) 61%, transparent 72%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(171, 204, 220, 0.012) 120px),
    radial-gradient(ellipse at 55% 46%, rgba(52, 132, 174, 0.16), transparent 49%),
    radial-gradient(ellipse at 73% 70%, rgba(198, 216, 225, 0.065), transparent 34%);
  opacity: 0.96;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding-bottom: 36px;
}

.eyebrow {
  display: flex;
  margin: 0 0 32px;
  align-items: center;
  gap: 15px;
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: var(--accent);
  content: "";
}

h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(38px, 3.2vw, 50px);
  font-weight: 440;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__subtitle {
  max-width: 540px;
  margin: 38px 0 0;
  color: #bec3c6;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 375;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  margin-top: 48px;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

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

.button--primary {
  color: #111;
  background: var(--text);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-soft);
  box-shadow: 0 12px 35px rgba(118, 158, 180, 0.2);
}

.button--secondary {
  border-color: var(--line);
  color: #d3d6d8;
  background: rgba(15, 28, 36, 0.72);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.brand-stage {
  position: relative;
  z-index: 2;
  width: min(58vw, 860px);
  height: min(76vh, 720px);
  min-height: 600px;
  justify-self: end;
  perspective: 1200px;
  background:
    radial-gradient(ellipse at 50% 53%, rgba(58, 139, 182, 0.15), rgba(8, 27, 37, 0.08) 43%, transparent 69%);
}

.brand-stage::before,
.brand-stage::after {
  display: none;
}

.scene-lighting {
  position: absolute;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 32%, rgba(215, 229, 236, 0.07) 49%, transparent 65%),
    radial-gradient(ellipse at 50% 48%, rgba(54, 144, 191, 0.2), rgba(17, 59, 80, 0.08) 36%, transparent 68%);
  inset: 3% -3% 0;
  pointer-events: none;
}

.scene-lighting::before {
  position: absolute;
  background: linear-gradient(to bottom, rgba(204, 224, 234, 0.055), rgba(65, 153, 199, 0.022) 42%, transparent 76%);
  clip-path: polygon(35% 0, 67% 0, 82% 100%, 18% 100%);
  content: "";
  inset: 0 4% 18%;
  opacity: 0.3;
}

.scene-lighting::after {
  position: absolute;
  bottom: 3%;
  left: 50%;
  width: 76%;
  height: 23%;
  border-top: 1px solid rgba(136, 193, 221, 0.18);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23, 67, 89, 0.2) 0%, rgba(0, 0, 0, 0.5) 46%, transparent 72%);
  box-shadow:
    0 -10px 38px rgba(51, 139, 184, 0.06),
    inset 0 10px 24px rgba(184, 213, 227, 0.035);
  content: "";
  transform: translateX(-50%);
}

.orbit-track {
  --angle: 0deg;
  --angle-end: 2deg;
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(151, 198, 221, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(222, 235, 241, 0.018);
  pointer-events: none;
  transform: rotate(var(--angle));
  animation: orbit-drift 14s ease-in-out infinite alternate;
}

.orbit-track::after {
  position: absolute;
  border-radius: inherit;
  background: conic-gradient(
    from 28deg,
    transparent 0 13%,
    rgba(215, 233, 241, 0.7) 18%,
    rgba(62, 158, 207, 0.45) 23%,
    transparent 31% 67%,
    rgba(180, 213, 229, 0.38) 73%,
    transparent 81%
  );
  content: "";
  inset: -2px;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.5px), #000 calc(100% - 0.5px), transparent 100%);
  animation: orbit-glint 22s ease-in-out infinite alternate;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.5px), #000 calc(100% - 0.5px), transparent 100%);
}

.orbit-track--outer {
  --angle: -8deg;
  --angle-end: -7deg;
  inset: 4% 0;
  opacity: 0.72;
  animation-duration: 36s;
}

.orbit-track--middle {
  --angle: 10deg;
  --angle-end: 9deg;
  inset: 15% 11%;
  border-color: rgba(205, 224, 233, 0.14);
  opacity: 0.86;
  animation-duration: 31s;
}

.orbit-track--inner {
  --angle: -13deg;
  --angle-end: -12deg;
  inset: 26% 22%;
  border-color: rgba(70, 163, 210, 0.22);
  opacity: 0.92;
  animation-duration: 27s;
}

@keyframes orbit-drift {
  to {
    transform: rotate(var(--angle-end));
  }
}

@keyframes orbit-glint {
  from {
    opacity: 0.58;
  }

  to {
    opacity: 0.92;
  }
}

.hero__car-shell {
  --pixel-align-x: 0px;
  --pixel-align-y: 0px;
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 50%;
  width: min(95%, 779px);
  height: min(91.2%, 656px);
  isolation: isolate;
  transform:
    translate(-50%, -50%)
    translate(var(--pixel-align-x), var(--pixel-align-y));
  pointer-events: none;
}

.hero__car-shell::before {
  position: absolute;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 73%, rgba(0, 0, 0, 0.72) 0 29%, transparent 68%),
    radial-gradient(ellipse at 50% 48%, rgba(49, 137, 183, 0.17), rgba(7, 20, 28, 0.5) 48%, transparent 73%);
  content: "";
  inset: 12% 1% 7%;
  transform: scale(1.06);
}

.hero__car-shell::after {
  position: absolute;
  z-index: 1;
  background:
    linear-gradient(158deg, transparent 28%, rgba(225, 235, 240, 0.055) 32%, transparent 36%),
    linear-gradient(22deg, transparent 29%, rgba(65, 153, 199, 0.04) 33%, transparent 37%),
    radial-gradient(circle at 20% 61%, rgba(91, 164, 200, 0.045), transparent 9%),
    radial-gradient(circle at 80% 61%, rgba(211, 228, 236, 0.035), transparent 9%);
  content: "";
  inset: 0;
  mask: url("assets/images/hero_coche_transparente.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
  -webkit-mask: url("assets/images/hero_coche_transparente.png") center / contain no-repeat;
}

.hero__car {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter:
    contrast(1.015)
    saturate(0.98)
    drop-shadow(0 1px 2px rgba(81, 151, 185, 0.08));
  object-fit: contain;
}

.brand-bubble {
  --float-x: 9px;
  --float-y: -9px;
  --float-x-alt: -6px;
  --float-y-alt: 6px;
  --float-scale: 1.018;
  --float-duration: 9s;
  --float-delay: 0s;
  --shift-x: 0px;
  --shift-y: 0px;
  --hover-scale: 1;
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: var(--size);
  height: var(--size);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(178, 210, 226, 0.17);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(230, 242, 248, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(9, 22, 30, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 13px 28px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(62, 139, 179, 0.07);
  transform:
    translate(-50%, -50%)
    translate(var(--shift-x), var(--shift-y))
    scale(var(--hover-scale));
  transition:
    box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 350ms ease,
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: bubble-float var(--float-duration) ease-in-out var(--float-delay) infinite;
}

.brand-bubble::before {
  position: absolute;
  border-radius: inherit;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.18), transparent 29%, transparent 68%, rgba(65, 150, 194, 0.08)),
    radial-gradient(circle at 31% 21%, rgba(255, 255, 255, 0.13), transparent 39%);
  content: "";
  inset: 0;
  opacity: 0.42;
}

.brand-bubble img {
  position: relative;
  z-index: 1;
  width: 72%;
  height: 52%;
  object-fit: contain;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-bubble:hover {
  --hover-scale: 1.07;
  z-index: 8;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(0, 0, 0, 0.38),
    0 0 20px rgba(61, 124, 153, 0.07);
  animation-play-state: paused;
}

.brand-bubble:hover img {
  transform: scale(1.075);
}

@keyframes bubble-float {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }

  34% {
    translate: var(--float-x) var(--float-y);
    scale: var(--float-scale);
  }

  68% {
    translate: var(--float-x-alt) var(--float-y-alt);
    scale: 1;
  }
}

@keyframes bubble-float-mobile {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }

  34% {
    translate: var(--mobile-float-x) var(--mobile-float-y);
    scale: var(--float-scale);
  }

  68% {
    translate: var(--mobile-float-x-alt) var(--mobile-float-y-alt);
    scale: 1;
  }
}

.brand-bubble--receded {
  z-index: 1;
  opacity: 0.62;
  filter: saturate(0.8) brightness(0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

.brand-bubble--receded:hover {
  opacity: 0.82;
}

.brand-bubble--mid {
  z-index: 2;
  opacity: 0.82;
  filter: saturate(0.9) brightness(0.92);
}

.brand-bubble--large {
  border-color: rgba(192, 219, 232, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(55, 139, 184, 0.075);
}

.brand-bubble--light {
  border-color: rgba(236, 244, 248, 0.46);
  background: linear-gradient(145deg, #edf1f3, #cad4d9);
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(161, 203, 223, 0.055);
}

.brand-bubble--dark {
  border-color: rgba(160, 207, 231, 0.66);
  background: linear-gradient(145deg, #3b6277 0%, #173442 58%, #0c1d26 100%);
  box-shadow:
    inset 0 0 0 1px rgba(224, 239, 247, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 7px 16px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(69, 145, 184, 0.08);
}

.brand-bubble--dark img {
  width: 86%;
  height: 64%;
}

.brand-bubble--dark.brand-bubble--receded {
  opacity: 0.68;
  border-color: rgba(166, 213, 236, 0.5);
  filter: saturate(0.86) brightness(0.92);
}

.scene-foreground {
  position: absolute;
  z-index: 2;
  bottom: -17%;
  left: 50%;
  width: 112%;
  height: 38%;
  border-top: 1px solid rgba(161, 204, 224, 0.13);
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(47, 129, 170, 0.045), transparent 36%);
  box-shadow:
    0 -18px 40px rgba(49, 137, 181, 0.045),
    inset 0 8px 24px rgba(204, 224, 233, 0.025);
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-bubble--denckermann {
  background: linear-gradient(145deg, #f2f4f4, #d6dfe2);
}

.brand-bubble--denckermann img {
  width: 84%;
  height: 46%;
}

.brand-bubble--fusion {
  background:
    radial-gradient(circle at 33% 20%, #415462, transparent 46%),
    #192a35;
}

.brand-bubble--fusion img {
  width: 79%;
  height: 79%;
}

.brand-bubble--osram {
  background: linear-gradient(145deg, #f2f4f4, #d3dde1);
}

.brand-bubble--wingold {
  border-color: rgba(190, 211, 221, 0.2);
  background:
    radial-gradient(circle at 34% 24%, #3b4e59, transparent 42%),
    #172731;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.28);
}

.brand-bubble--wingold img {
  width: 69%;
  height: 69%;
}

.brand-bubble--large.brand-bubble--near {
  z-index: 5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 20px 42px rgba(0, 0, 0, 0.43),
    0 0 30px rgba(62, 151, 197, 0.11);
}

.brand-bubble--large.brand-bubble--foreground {
  z-index: 6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 25px 52px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(65, 156, 202, 0.14);
}

.anchor-target {
  position: absolute;
  bottom: 0;
}

.solutions-section {
  position: relative;
  padding: 132px max(48px, calc((100vw - 1440px) / 2 + 48px)) 148px;
  overflow: hidden;
  scroll-margin-top: 92px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(211, 231, 241, 0.022) 50%, transparent 50.1%),
    radial-gradient(ellipse at 82% 20%, rgba(61, 140, 181, 0.13), transparent 40%),
    radial-gradient(ellipse at 10% 86%, rgba(190, 212, 222, 0.045), transparent 34%),
    linear-gradient(145deg, #09141b 0%, #10222c 50%, #081219 100%);
}

.solutions-section::before {
  position: absolute;
  top: 0;
  right: 4%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 216, 232, 0.28), transparent);
  content: "";
}

.solutions-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(210, 230, 240, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 230, 240, 0.012) 1px, transparent 1px);
  background-size: 100% 120px, 180px 100%;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.solutions-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1344px;
  margin: 0 auto;
}

.solutions-section__header {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: 64px;
}

.section-kicker {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 14px;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 34px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.solutions-section h2 {
  max-width: 780px;
  margin: 0;
  color: #f5f8fa;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.solutions-section__intro {
  max-width: 510px;
  margin: 0 0 4px;
  color: #c8d2d7;
  font-size: 17px;
  line-height: 1.7;
}

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

.solution-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(177, 208, 224, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.055), transparent 35%),
    rgba(7, 19, 26, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 20px 45px rgba(0, 0, 0, 0.16);
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card::before {
  position: absolute;
  z-index: 2;
  top: -55%;
  left: -52%;
  width: 72%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(221, 237, 245, 0.075), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(18deg);
  transition:
    left 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 350ms ease;
}

.solution-card:hover,
.solution-card:focus-within {
  border-color: rgba(110, 185, 224, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 28px 62px rgba(0, 0, 0, 0.25),
    0 0 28px rgba(58, 141, 184, 0.07);
  transform: translateY(-6px) scale(1.008);
}

.solution-card:hover::before,
.solution-card:focus-within::before {
  left: 82%;
  opacity: 1;
}

.solution-card__visual {
  position: relative;
  display: grid;
  height: 205px;
  flex: 0 0 205px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(174, 207, 223, 0.2);
  background:
    radial-gradient(circle at 50% 54%, rgba(67, 148, 190, 0.14), transparent 48%),
    linear-gradient(145deg, rgba(180, 211, 226, 0.055), rgba(1, 8, 12, 0.18)),
    #0b1b24;
}

.solution-card__visual::before {
  position: absolute;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 48%, rgba(2, 9, 13, 0.35) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.solution-card__visual::after {
  position: absolute;
  z-index: 1;
  right: 14%;
  bottom: 0;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 194, 232, 0.38), transparent);
  content: "";
}

.solution-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 400ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card:hover .solution-card__visual img,
.solution-card:focus-within .solution-card__visual img {
  filter: brightness(1.035) contrast(1.025);
  transform: scale(1.025);
}

.solution-card__content {
  display: flex;
  min-height: 315px;
  padding: 30px;
  flex: 1;
  flex-direction: column;
}

.solution-card h3 {
  min-height: 58px;
  margin: 0;
  color: #eef4f7;
  font-size: 23px;
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.solution-card p {
  margin: 18px 0 0;
  color: #c0ccd2;
  font-size: 14px;
  line-height: 1.65;
}

.solution-card__link {
  display: flex;
  min-height: 48px;
  margin-top: auto;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(167, 207, 227, 0.32);
  border-radius: 999px;
  color: #e7eff3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  opacity: 0.82;
  transform: translateY(3px);
  transition:
    border-color 300ms ease,
    background 300ms ease,
    opacity 300ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card:hover .solution-card__link,
.solution-card:focus-within .solution-card__link {
  border-color: rgba(132, 197, 229, 0.48);
  background: rgba(68, 148, 189, 0.1);
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .solution-card__link {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(350px, 0.9fr) minmax(500px, 1.1fr);
  }

  .brand-stage {
    width: 56vw;
    transform: scale(0.9);
    transform-origin: right center;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    width: calc(100% - 40px);
  }

  .brand {
    gap: 12px;
  }

  .brand__wording {
    padding-left: 12px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__mark img {
    width: 50px;
    height: 50px;
  }

  .brand__name {
    font-size: 17px;
  }

  .brand__descriptor {
    font-size: 8px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: -20px;
    display: flex;
    width: 0;
    height: 100svh;
    padding: 130px 0 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    background: rgba(10, 25, 34, 0.99);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.35);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(110%);
    transition:
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 280ms,
      width 0s linear 280ms,
      padding-inline 0s linear 280ms;
  }

  .main-nav.is-open {
    width: min(80vw, 330px);
    padding-right: 44px;
    padding-left: 44px;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .main-nav a {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    font-size: 15px;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 126px 20px 70px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero__content {
    max-width: 680px;
    padding: 0;
  }

  h1 {
    font-size: clamp(36px, 7.5vw, 48px);
  }

  .hero__subtitle {
    max-width: 600px;
  }

  .brand-stage {
    width: min(760px, 100%);
    height: 650px;
    min-height: 650px;
    margin: 32px auto 0;
    align-self: center;
    transform: none;
  }

  .hero__car-shell {
    top: 52%;
    width: min(95%, 665px);
  }

  .solutions-section {
    padding: 100px 32px 112px;
  }

  .solutions-section__header {
    margin-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solutions-section__intro {
    max-width: 620px;
  }

  .solution-card {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 122px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: clamp(34px, 9.8vw, 44px);
    line-height: 0.97;
  }

  .hero__subtitle {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 32px;
  }

  .button {
    min-height: 50px;
    padding: 0 20px;
  }

  .brand-stage {
    width: 112%;
    height: 540px;
    min-height: 540px;
    margin-left: -6%;
  }

  .brand-bubble {
    --mobile-float-x: 4px;
    --mobile-float-y: -4px;
    --mobile-float-x-alt: -3px;
    --mobile-float-y-alt: 3px;
    top: clamp(calc((var(--size) * 0.355) + 7px), var(--y), calc(100% - (var(--size) * 0.355) - 7px));
    left: clamp(calc(6% + (var(--size) * 0.355) + 7px), var(--x), calc(94% - (var(--size) * 0.355) - 7px));
    width: calc(var(--size) * 0.71);
    height: calc(var(--size) * 0.71);
    animation-name: bubble-float-mobile;
  }

  .brand-bubble--large {
    --mobile-float-x: 3px;
    --mobile-float-y: -3px;
    --mobile-float-x-alt: -2px;
    --mobile-float-y-alt: 2px;
  }

  .brand-bubble--mid {
    --mobile-float-x: 5px;
    --mobile-float-y: -5px;
    --mobile-float-x-alt: -3px;
    --mobile-float-y-alt: 3px;
  }

  .brand-bubble--receded {
    --mobile-float-x: 6px;
    --mobile-float-y: -6px;
    --mobile-float-x-alt: -4px;
    --mobile-float-y-alt: 4px;
  }

  .brand-bubble--redline {
    --x: 34% !important;
    --y: 4% !important;
  }

  .brand-bubble--parksafe {
    --x: 35% !important;
    --y: 35% !important;
  }

  .brand-bubble--mai {
    --x: 65% !important;
    --y: 82% !important;
  }

  .brand-bubble--mtech {
    --x: 42% !important;
    --y: 82% !important;
  }

  .solutions-section {
    padding: 82px 20px 92px;
  }

  .solutions-section__header {
    margin-bottom: 46px;
  }

  .solutions-section h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .solutions-section__intro {
    font-size: 16px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 490px;
  }

  .solution-card__visual {
    height: 190px;
    flex-basis: 190px;
  }

  .solution-card__content {
    min-height: 300px;
    padding: 26px;
  }

  .solution-card__link {
    opacity: 1;
    transform: none;
  }
}

/* Contacto cinematográfico a ancho completo */
.contact-section {
  min-height: 0;
  padding: 0;
  background: #050e14;
}

.contact-section::before {
  right: 0;
  left: 0;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(171, 208, 226, 0.3), transparent);
}

.contact-section::after {
  display: none;
}

/* Refinamiento final de la escena cinematográfica */
.contact-cinematic h2 {
  font-size: clamp(49px, 5.1vw, 71px);
}

.contact-cinematic .contact-actions {
  margin-top: 34px;
}

.contact-cinematic__closing {
  bottom: 98px;
}

.contact-cinematic__beam {
  right: 4%;
  width: 38%;
  animation-duration: 13s;
}

.contact-cinematic__automotive {
  filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.09));
}

.contact-cinematic__bodyline {
  border-top-color: rgba(205, 227, 237, 0.27);
  box-shadow:
    inset 0 12px 20px rgba(157, 200, 219, 0.045),
    0 -1px rgba(104, 178, 211, 0.2),
    0 -4px 12px rgba(60, 149, 192, 0.035);
}

.contact-cinematic__automotive::before {
  position: absolute;
  top: 18%;
  left: 28%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(213, 235, 244, 0.48);
  box-shadow:
    128px 44px 0 -0.5px rgba(91, 180, 220, 0.34),
    252px -18px 0 -0.5px rgba(219, 237, 245, 0.28),
    344px 112px 0 -1px rgba(92, 173, 212, 0.32);
  content: "";
  opacity: 0.55;
  animation: contact-glints 7s ease-in-out infinite;
}

@keyframes contact-glints {
  50% {
    opacity: 0.85;
  }
}

@keyframes contact-beam-drift {
  50% {
    opacity: 0.76;
    translate: 30px 0;
  }
}

@media (max-width: 720px) {
  .contact-cinematic h2 {
    font-size: 45px;
  }

  .contact-cinematic .contact-actions {
    margin-top: 28px;
  }

  .contact-cinematic__closing {
    bottom: auto;
    margin-top: 50px;
  }

  .contact-cinematic__beam {
    right: -30%;
    width: 82%;
  }

  .contact-cinematic__automotive {
    filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.055));
  }

  .contact-cinematic__automotive::before {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__automotive::before {
    animation: none !important;
  }
}

@media (min-width: 721px) {
  .contact-cinematic .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cinematic__closing {
    right: 10%;
    max-width: 300px;
  }
}

/* Último ajuste de escala y luz de la escena de contacto */
.contact-cinematic h2 {
  font-size: clamp(49px, 5.1vw, 71px);
}

.contact-cinematic .contact-actions {
  margin-top: 34px;
}

.contact-cinematic__closing {
  bottom: 98px;
}

.contact-cinematic__beam {
  right: 4%;
  width: 38%;
  animation-duration: 13s;
}

.contact-cinematic__automotive {
  filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.09));
}

.contact-cinematic__bodyline {
  border-top-color: rgba(205, 227, 237, 0.27);
  box-shadow:
    inset 0 12px 20px rgba(157, 200, 219, 0.045),
    0 -1px rgba(104, 178, 211, 0.2),
    0 -4px 12px rgba(60, 149, 192, 0.035);
}

.contact-cinematic__automotive::before {
  position: absolute;
  top: 18%;
  left: 28%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(213, 235, 244, 0.48);
  box-shadow:
    128px 44px 0 -0.5px rgba(91, 180, 220, 0.34),
    252px -18px 0 -0.5px rgba(219, 237, 245, 0.28),
    344px 112px 0 -1px rgba(92, 173, 212, 0.32);
  content: "";
  opacity: 0.55;
  animation: contact-glints 7s ease-in-out infinite;
}

@keyframes contact-glints {
  50% {
    opacity: 0.85;
  }
}

@keyframes contact-beam-drift {
  50% {
    opacity: 0.76;
    translate: 30px 0;
  }
}

@media (max-width: 720px) {
  .contact-cinematic h2 {
    font-size: 45px;
  }

  .contact-cinematic .contact-actions {
    margin-top: 28px;
  }

  .contact-cinematic__closing {
    bottom: auto;
    margin-top: 50px;
  }

  .contact-cinematic__beam {
    right: -30%;
    width: 82%;
  }

  .contact-cinematic__automotive {
    filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.055));
  }

  .contact-cinematic__automotive::before {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__automotive::before {
    animation: none !important;
  }
}

.contact-cinematic {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: 128px max(48px, calc((100vw - 1440px) / 2 + 48px)) 112px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(104deg, rgba(4, 13, 19, 0.98) 0%, rgba(6, 20, 28, 0.92) 42%, rgba(6, 22, 31, 0.52) 69%, rgba(3, 11, 16, 0.9) 100%),
    radial-gradient(ellipse at 76% 42%, rgba(47, 137, 180, 0.22), transparent 38%),
    linear-gradient(142deg, #071820 0%, #0a2733 48%, #040d13 100%);
}

.contact-cinematic::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(112deg, transparent 0 54px, rgba(205, 226, 236, 0.018) 55px, transparent 56px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.012));
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.contact-cinematic::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(1, 7, 11, 0.62));
  content: "";
  pointer-events: none;
}

.contact-cinematic__beam {
  position: absolute;
  top: -46%;
  right: 9%;
  z-index: 0;
  width: 30%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(201, 226, 238, 0.13), rgba(55, 151, 198, 0.18), transparent);
  filter: blur(1px);
  pointer-events: none;
  transform: rotate(20deg);
  animation: contact-beam-drift 11s ease-in-out infinite alternate;
}

.contact-cinematic__beam::after {
  position: absolute;
  top: 20%;
  left: 46%;
  width: 2px;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(202, 230, 242, 0.48), transparent);
  box-shadow: 0 0 16px rgba(72, 164, 207, 0.22);
  content: "";
}

.contact-cinematic__content {
  position: relative;
  z-index: 5;
  width: min(520px, 48vw);
}

.contact-cinematic__eyebrow {
  margin: 0 0 25px;
  color: #78b8d7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-cinematic h2 {
  margin: 0;
  color: #f2f7f9;
  font-size: clamp(54px, 5.6vw, 78px);
  font-weight: 420;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-shadow: 0 1px rgba(255, 255, 255, 0.12);
}

.contact-cinematic__description {
  max-width: 505px;
  margin: 30px 0 0;
  color: #c4d1d7;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.contact-cinematic .contact-actions {
  max-width: 510px;
  margin-top: 42px;
}

.contact-cinematic .contact-action {
  min-height: 62px;
  border-color: rgba(162, 205, 225, 0.3);
  background: linear-gradient(135deg, rgba(171, 211, 229, 0.1), rgba(7, 24, 33, 0.34));
  box-shadow:
    inset 0 1px rgba(236, 247, 251, 0.08),
    0 16px 34px rgba(0, 5, 9, 0.25);
}

.contact-cinematic .contact-action--primary {
  border-color: rgba(90, 179, 222, 0.55);
  background: linear-gradient(135deg, rgba(49, 145, 191, 0.38), rgba(12, 46, 63, 0.58));
  box-shadow:
    inset 0 1px rgba(232, 247, 253, 0.12),
    0 0 28px rgba(43, 137, 183, 0.1),
    0 16px 34px rgba(0, 5, 9, 0.28);
}

.contact-cinematic .contact-action:hover,
.contact-cinematic .contact-action:focus-visible {
  border-color: rgba(133, 207, 240, 0.68);
  background-color: rgba(55, 145, 186, 0.2);
  box-shadow:
    inset 0 1px rgba(236, 247, 251, 0.11),
    0 0 32px rgba(55, 153, 198, 0.12),
    0 18px 38px rgba(0, 5, 9, 0.3);
}

.contact-cinematic__closing {
  position: absolute;
  right: max(48px, calc((100vw - 1440px) / 2 + 48px));
  bottom: 76px;
  z-index: 5;
  max-width: 390px;
  margin: 0;
  color: #d7e1e6;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 410;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.contact-cinematic__closing::before {
  position: absolute;
  top: -22px;
  right: 0;
  width: 128px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 186, 220, 0.64));
  content: "";
}

.contact-cinematic__automotive {
  position: absolute;
  right: -2%;
  bottom: 7%;
  z-index: 1;
  width: 55%;
  height: 54%;
  opacity: 0.78;
  pointer-events: none;
  animation: contact-automotive-pulse 8s ease-in-out infinite;
}

.contact-cinematic__bodyline {
  position: absolute;
  top: 11%;
  right: -4%;
  width: 94%;
  height: 58%;
  border-top: 1px solid rgba(205, 227, 237, 0.2);
  border-radius: 55% 18% 7% 35%;
  background:
    linear-gradient(164deg, rgba(117, 169, 191, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(4, 15, 21, 0.2), rgba(2, 8, 12, 0.82));
  box-shadow:
    inset 0 12px 20px rgba(157, 200, 219, 0.035),
    0 -1px rgba(88, 161, 195, 0.15);
  transform: skewX(-11deg);
}

.contact-cinematic__headlamp {
  position: absolute;
  top: 32%;
  right: 12%;
  width: 30%;
  height: 16%;
  border-top: 1px solid rgba(218, 238, 247, 0.65);
  border-bottom: 1px solid rgba(59, 155, 201, 0.3);
  background: linear-gradient(172deg, rgba(224, 241, 248, 0.16), rgba(55, 147, 191, 0.06) 46%, transparent 72%);
  box-shadow:
    0 -3px 12px rgba(200, 229, 240, 0.09),
    0 2px 16px rgba(43, 148, 198, 0.12);
  clip-path: polygon(5% 22%, 100% 0, 80% 78%, 0 100%);
}

.contact-cinematic__headlamp::after {
  position: absolute;
  top: 28%;
  right: 10%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(226, 244, 251, 0.8));
  box-shadow: 0 0 12px rgba(93, 190, 232, 0.34);
  content: "";
}

.contact-cinematic__grille {
  position: absolute;
  right: 10%;
  bottom: 5%;
  width: 42%;
  height: 33%;
  border-top: 1px solid rgba(179, 211, 224, 0.11);
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(147, 188, 207, 0.075) 13px, transparent 14px);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 85%, transparent);
  transform: perspective(500px) rotateX(57deg) skewX(-8deg);
}

@keyframes contact-beam-drift {
  50% {
    opacity: 0.72;
    translate: 16px 0;
  }
}

@keyframes contact-automotive-pulse {
  50% {
    opacity: 0.88;
  }
}

@media (max-width: 720px) {
  .contact-cinematic {
    display: block;
    min-height: 780px;
    padding: 84px 20px 78px;
  }

  .contact-cinematic__content {
    width: 100%;
  }

  .contact-cinematic h2 {
    font-size: 50px;
  }

  .contact-cinematic__description {
    max-width: 345px;
    margin-top: 25px;
    font-size: 16px;
  }

  .contact-cinematic .contact-actions {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .contact-cinematic .contact-action {
    min-height: 58px;
  }

  .contact-cinematic__closing {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 305px;
    margin: 58px 0 0;
    font-size: 22px;
  }

  .contact-cinematic__closing::before {
    right: auto;
    left: 0;
  }

  .contact-cinematic__automotive {
    right: -24%;
    bottom: 1%;
    width: 104%;
    height: 37%;
    opacity: 0.38;
  }

  .contact-cinematic__beam {
    top: -28%;
    right: -28%;
    width: 66%;
    height: 160%;
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__beam,
  .contact-cinematic__automotive {
    animation: none !important;
  }
}

@media (max-width: 390px) {
  .brand__name {
    font-size: 16px;
  }

  .brand__descriptor {
    font-size: 7.5px;
  }

  h1 {
    font-size: 34px;
  }

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

  .button {
    width: 100%;
  }

  .brand-stage {
    height: 500px;
    min-height: 500px;
  }

  .solutions-section {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.criteria-section {
  position: relative;
  padding: 136px max(48px, calc((100vw - 1440px) / 2 + 48px)) 150px;
  overflow: hidden;
  border-top: 1px solid rgba(184, 214, 229, 0.16);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(72, 153, 196, 0.12), transparent 42%),
    linear-gradient(132deg, rgba(210, 229, 238, 0.025), transparent 30%),
    linear-gradient(160deg, #071117 0%, #0d1d26 54%, #061016 100%);
}

.criteria-section::before,
.criteria-section::after {
  position: absolute;
  border: 1px solid rgba(158, 204, 227, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.criteria-section::before {
  top: -390px;
  left: 50%;
  width: 980px;
  height: 620px;
  transform: translateX(-50%);
}

.criteria-section::after {
  right: -260px;
  bottom: -370px;
  width: 760px;
  height: 620px;
  border-color: rgba(217, 230, 236, 0.05);
}

.criteria-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1344px;
  margin: 0 auto;
}

.criteria-section__header {
  display: grid;
  max-width: 960px;
  margin: 0 auto 78px;
  justify-items: center;
  text-align: center;
}

.criteria-section__header .section-kicker {
  margin-bottom: 25px;
}

.criteria-section__header h2 {
  max-width: 920px;
  margin: 0;
  color: #f4f7f9;
  font-size: clamp(36px, 4.55vw, 62px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1;
}

.criteria-section__header > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c6d2d8;
  font-size: 17px;
  line-height: 1.7;
}

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

.criteria-composition::before {
  position: absolute;
  z-index: -1;
  top: 134px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(104, 177, 214, 0.25) 18%,
    rgba(217, 231, 238, 0.2) 50%,
    rgba(104, 177, 214, 0.25) 82%,
    transparent
  );
  content: "";
}

.criteria-composition::after {
  position: absolute;
  z-index: 0;
  top: 133px;
  left: 37%;
  width: 26%;
  height: 3px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(202, 225, 236, 0.14),
    rgba(225, 238, 244, 0.62),
    rgba(78, 163, 207, 0.22),
    transparent
  );
  box-shadow: 0 0 8px rgba(116, 190, 228, 0.13);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.criterion-module {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 410px;
  padding: 34px 34px 38px;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(163, 199, 217, 0.11);
  border-radius: 190px 190px 28px 28px;
  background:
    radial-gradient(circle at 28% 8%, rgba(225, 238, 244, 0.09), transparent 22%),
    radial-gradient(circle at 78% 31%, rgba(57, 148, 195, 0.1), transparent 31%),
    linear-gradient(150deg, rgba(231, 241, 246, 0.035), transparent 31%),
    linear-gradient(180deg, rgba(18, 42, 55, 0.88), rgba(6, 17, 23, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -16px 28px rgba(0, 0, 0, 0.12),
    0 14px 26px rgba(0, 0, 0, 0.24);
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.criterion-module::before {
  position: absolute;
  top: -18%;
  left: -52%;
  width: 50%;
  height: 132%;
  background: linear-gradient(90deg, transparent, rgba(224, 238, 245, 0.065), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(18deg);
  transition:
    left 850ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 400ms ease;
}

.criterion-module::after {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 175, 216, 0.34), transparent);
  content: "";
}

.criterion-module:hover {
  border-color: rgba(123, 190, 224, 0.23);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -16px 28px rgba(0, 0, 0, 0.12),
    0 17px 30px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(59, 148, 194, 0.055);
  transform: translateY(-3px);
}

.criterion-module:hover::before {
  left: 102%;
  opacity: 1;
}

.criterion-module__visual {
  position: relative;
  display: grid;
  width: 174px;
  height: 174px;
  flex: 0 0 174px;
  place-items: center;
  border: 1px solid rgba(178, 211, 226, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 28%, rgba(227, 239, 245, 0.15), transparent 17%),
    radial-gradient(circle at 50% 50%, rgba(54, 137, 180, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(216, 231, 238, 0.06), rgba(2, 10, 14, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 -14px 24px rgba(0, 0, 0, 0.17),
    0 10px 18px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(58, 151, 198, 0.07);
}

.criterion-icon {
  display: block;
  width: 78%;
  height: 78%;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.criterion-icon__surface {
  fill: rgba(43, 110, 146, 0.055);
  stroke: rgba(193, 220, 233, 0.3);
  stroke-width: 1.35;
}

.criterion-icon__surface--secondary {
  fill: rgba(54, 137, 180, 0.035);
  stroke: rgba(114, 184, 220, 0.38);
}

.criterion-icon__line {
  stroke: rgba(156, 205, 230, 0.58);
  stroke-width: 1.55;
}

.criterion-icon__technical {
  fill: rgba(53, 137, 181, 0.08);
  stroke: rgba(219, 234, 241, 0.7);
  stroke-width: 1.75;
}

.criterion-icon__nodes circle,
.criterion-icon__node {
  fill: #2f82ad;
  stroke: rgba(221, 236, 243, 0.86);
  stroke-width: 1.25;
  filter: drop-shadow(0 0 3px rgba(73, 165, 213, 0.38));
}

.criterion-module__content {
  display: grid;
  margin-top: 29px;
  justify-items: center;
  text-align: center;
}

.criterion-module__number {
  color: #78afd0;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.criterion-module h3 {
  margin: 11px 0 0;
  color: #eef4f7;
  font-size: 22px;
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.criterion-module p {
  max-width: 310px;
  margin: 17px 0 0;
  color: #bdcbd2;
  font-size: 14px;
  line-height: 1.6;
}

.criteria-animated .criteria-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.criteria-animated .criterion-module:nth-child(2) {
  transition-delay: 90ms;
}

.criteria-animated .criterion-module:nth-child(3) {
  transition-delay: 180ms;
}

@media (max-width: 900px) {
  .criteria-section {
    padding: 104px 32px 116px;
  }

  .criteria-section__header {
    margin-bottom: 58px;
  }

  .criteria-composition {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .criteria-composition::before {
    top: 8%;
    bottom: 8%;
    left: 105px;
    width: 1px;
    height: auto;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(105, 180, 218, 0.25) 20%,
      rgba(213, 230, 238, 0.2) 50%,
      rgba(105, 180, 218, 0.25) 80%,
      transparent
    );
  }

  .criteria-composition::after {
    top: 37%;
    bottom: auto;
    left: 104px;
    width: 3px;
    height: 26%;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(219, 235, 242, 0.58),
      rgba(77, 161, 204, 0.2),
      transparent
    );
  }

  .criterion-module {
    min-height: 230px;
    padding: 28px 42px 28px 30px;
    align-items: center;
    flex-direction: row;
    border-radius: 120px 28px 28px 120px;
    gap: 34px;
  }

  .criterion-module__visual {
    width: 164px;
    height: 164px;
    flex-basis: 164px;
  }

  .criterion-module__content {
    margin: 0;
    justify-items: start;
    text-align: left;
  }

  .criterion-module p {
    max-width: 440px;
  }
}

@media (max-width: 600px) {
  .criteria-section {
    padding: 84px 20px 94px;
  }

  .criteria-section__header {
    margin-bottom: 44px;
    justify-items: start;
    text-align: left;
  }

  .criteria-section__header h2 {
    font-size: clamp(33px, 9.5vw, 45px);
  }

  .criteria-section__header > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .criteria-composition::before {
    left: 76px;
  }

  .criteria-composition::after {
    left: 75px;
  }

  .criterion-module {
    min-height: 190px;
    padding: 24px 24px 24px 20px;
    border-radius: 96px 24px 24px 96px;
    gap: 20px;
  }

  .criterion-module__visual {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
  }

  .criterion-module h3 {
    font-size: 19px;
  }

  .criterion-module p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .criteria-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .criterion-module {
    min-height: 184px;
    padding-right: 18px;
    gap: 16px;
  }

  .criterion-module__visual {
    width: 98px;
    height: 98px;
    flex-basis: 98px;
  }

  .criterion-module h3 {
    font-size: 18px;
  }
}

.connection-section {
  position: relative;
  padding: 132px max(48px, calc((100vw - 1440px) / 2 + 48px)) 144px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 48% 42%, rgba(49, 139, 185, 0.12), transparent 45%),
    radial-gradient(ellipse at 92% 72%, rgba(201, 221, 231, 0.055), transparent 31%),
    linear-gradient(152deg, #061016 0%, #0b1b24 52%, #050d12 100%);
}

.connection-section::before {
  position: absolute;
  top: 0;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 216, 229, 0.24), transparent);
  content: "";
}

.connection-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(210, 230, 240, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 230, 240, 0.01) 1px, transparent 1px);
  background-size: 100% 126px, 190px 100%;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 4%, black 32%, transparent 94%);
  pointer-events: none;
}

.connection-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1344px;
  margin: 0 auto;
}

.connection-section__header {
  max-width: 960px;
}

.connection-section__header h2 {
  margin: 0;
  color: #f2f6f8;
  font-size: clamp(40px, 4.75vw, 66.5px);
  font-weight: 420;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.connection-scene {
  position: relative;
  height: 470px;
  margin-top: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 52%, rgba(66, 154, 199, 0.13), transparent 18%),
    radial-gradient(circle at 51% 34%, rgba(213, 229, 237, 0.075), transparent 18%),
    radial-gradient(circle at 83% 58%, rgba(59, 145, 190, 0.12), transparent 20%);
}

.connection-scene::before {
  position: absolute;
  right: 2%;
  bottom: 36px;
  left: 2%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(202, 223, 233, 0.08),
    rgba(108, 177, 212, 0.2),
    rgba(215, 230, 237, 0.09),
    transparent
  );
  content: "";
}

.connection-scene__reflection {
  position: absolute;
  top: 24px;
  left: 38%;
  width: 44%;
  height: 260px;
  background: linear-gradient(112deg, transparent 20%, rgba(222, 236, 242, 0.055), transparent 68%);
  filter: blur(0.2px);
  pointer-events: none;
  transform: skewX(-18deg);
}

.connection-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  pointer-events: none;
}

.connection-route__base {
  stroke: rgba(139, 201, 231, 0.5);
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.connection-route__secondary,
.connection-route__fine {
  stroke: rgba(206, 226, 235, 0.07);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.connection-route__fine {
  stroke: rgba(71, 155, 199, 0.08);
}

.connection-route__pulse {
  stroke: rgba(225, 239, 245, 0.64);
  stroke-width: 2.1;
  stroke-dasharray: 72 640;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(83, 175, 222, 0.34));
  vector-effect: non-scaling-stroke;
  animation: connection-route-flow 9s linear infinite;
}

@keyframes connection-route-flow {
  to {
    stroke-dashoffset: -712;
  }
}

.connection-stop {
  position: absolute;
  z-index: 2;
  display: grid;
  width: min(29%, 330px);
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.connection-stop--market {
  top: 41%;
  left: 5%;
}

.connection-stop--selection {
  top: 12.5%;
  left: 39%;
}

.connection-stop--proximity {
  top: 41%;
  left: 68%;
}

.connection-stop__marker {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 8px;
  border: 1px solid rgba(221, 237, 244, 0.82);
  border-radius: 50%;
  background: #2f82ad;
  box-shadow:
    0 0 0 7px rgba(55, 139, 183, 0.09),
    0 0 15px rgba(75, 169, 217, 0.3);
  animation: connection-marker-pulse 3.8s ease-in-out infinite;
}

.connection-stop__marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #eef8fc;
  content: "";
  transform: translate(-50%, -50%);
}

.connection-stop__marker::before {
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 220, 234, 0.52), transparent);
  box-shadow: 0 0 5px rgba(80, 166, 210, 0.16);
  content: "";
  transform: translateY(-50%);
}

.connection-stop--selection .connection-stop__marker {
  animation-delay: -1.2s;
}

.connection-stop--proximity .connection-stop__marker {
  animation-delay: -2.4s;
}

@keyframes connection-marker-pulse {
  50% {
    box-shadow:
      0 0 0 11px rgba(55, 139, 183, 0.045),
      0 0 19px rgba(75, 169, 217, 0.38);
  }
}

.connection-stop__content {
  position: relative;
}

.connection-stop__index {
  color: #6fa8c9;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.connection-stop h3 {
  margin: 9px 0 0;
  color: #f1f6f8;
  font-size: 29px;
  font-weight: 470;
  letter-spacing: -0.035em;
  line-height: 1;
}

.connection-stop p {
  max-width: 280px;
  margin: 16px 0 0;
  color: #c2cfd5;
  font-size: 14px;
  line-height: 1.65;
}

.connection-animated .connection-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.connection-animated .connection-stop--market {
  transition-delay: 120ms;
}

.connection-animated .connection-stop--selection {
  transition-delay: 230ms;
}

.connection-animated .connection-stop--proximity {
  transition-delay: 340ms;
}

@media (max-width: 900px) {
  .connection-section {
    padding: 106px 32px 120px;
  }

  .connection-section__header h2 {
    font-size: clamp(38px, 6.65vw, 55px);
  }

  .connection-stop {
    width: min(31%, 285px);
  }
}

@media (max-width: 700px) {
  .connection-section {
    padding: 86px 20px 94px;
  }

  .connection-section__header h2 {
    font-size: clamp(34px, 9.9vw, 45px);
    line-height: 1;
  }

  .connection-scene {
    display: grid;
    height: auto;
    min-height: 620px;
    margin-top: 42px;
    padding: 26px 0 10px;
    align-content: space-between;
    gap: 68px;
    overflow: visible;
    background:
      radial-gradient(circle at 31px 18%, rgba(64, 153, 199, 0.13), transparent 16%),
      radial-gradient(circle at 31px 51%, rgba(208, 227, 236, 0.07), transparent 15%),
      radial-gradient(circle at 31px 84%, rgba(58, 145, 190, 0.12), transparent 16%);
  }

  .connection-scene::before {
    top: 34px;
    right: auto;
    bottom: 34px;
    left: 30px;
    width: 1px;
    height: auto;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(112, 186, 222, 0.3) 12%,
      rgba(216, 233, 241, 0.28) 50%,
      rgba(91, 170, 210, 0.28) 88%,
      transparent
    );
  }

  .connection-scene::after {
    position: absolute;
    top: 16%;
    left: 29px;
    width: 3px;
    height: 24%;
    border-radius: 50%;
    background: linear-gradient(to bottom, transparent, rgba(226, 239, 245, 0.78), transparent);
    box-shadow: 0 0 8px rgba(91, 178, 221, 0.22);
    content: "";
    animation: connection-mobile-flow 7s ease-in-out infinite;
  }

  @keyframes connection-mobile-flow {
    50% {
      top: 61%;
    }
  }

  .connection-route {
    display: none;
  }

  .connection-scene__reflection {
    top: 20%;
    left: 14%;
    width: 80%;
    height: 330px;
    opacity: 0.7;
  }

  .connection-stop,
  .connection-stop--market,
  .connection-stop--selection,
  .connection-stop--proximity {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .connection-stop__marker {
    margin-top: 7px;
    justify-self: center;
  }

  .connection-stop h3 {
    font-size: 25px;
  }

  .connection-stop p {
    max-width: 265px;
    margin-top: 13px;
  }
}

@media (max-width: 390px) {
  .connection-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .connection-section__header h2 {
    font-size: 34px;
  }
}

.contact-section {
  position: relative;
  padding: 138px max(48px, calc((100vw - 1440px) / 2 + 48px)) 150px;
  overflow: hidden;
  scroll-margin-top: 40px;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(72, 155, 197, 0.1), transparent 34%),
    radial-gradient(ellipse at 12% 82%, rgba(206, 225, 234, 0.045), transparent 29%),
    linear-gradient(145deg, #0a1820 0%, #102630 52%, #08151c 100%);
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 220, 232, 0.27), transparent);
  content: "";
}

.contact-section::after {
  position: absolute;
  top: -260px;
  right: -170px;
  width: 760px;
  height: 520px;
  border: 1px solid rgba(177, 211, 227, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1344px;
  margin: 0 auto;
}

.contact-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 72px;
}

.contact-section__header .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.contact-section__header h2 {
  margin: 0;
  color: #f4f8fa;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 420;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.contact-section__header > p:last-child {
  max-width: 560px;
  margin: 0 0 4px;
  color: #c6d3d9;
  font-size: 17px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  margin-top: 84px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 84px;
}

.contact-details {
  display: flex;
  min-width: 0;
  min-height: 500px;
  justify-content: space-between;
  flex-direction: column;
}

.contact-list {
  border-top: 1px solid rgba(182, 211, 225, 0.15);
}

.contact-item {
  display: grid;
  padding: 24px 0 25px;
  border-bottom: 1px solid rgba(182, 211, 225, 0.13);
  grid-template-columns: 158px minmax(0, 1fr);
  align-items: baseline;
  gap: 24px;
}

.contact-item__label {
  color: #83b5d0;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-item a {
  min-width: 0;
  color: #edf4f7;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: color 260ms ease;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: #a9d5eb;
}

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

.contact-action,
.contact-form__submit {
  display: flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(164, 204, 224, 0.28);
  border-radius: 999px;
  color: #eaf2f6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.045em;
  transition:
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-action--primary {
  border-color: rgba(112, 187, 224, 0.42);
  background: rgba(56, 142, 185, 0.12);
}

.contact-action:hover,
.contact-action:focus-visible {
  border-color: rgba(145, 207, 237, 0.55);
  background: rgba(71, 158, 201, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.contact-form {
  position: relative;
  display: grid;
  min-width: 0;
  padding-left: 72px;
  border-left: 1px solid rgba(186, 215, 229, 0.14);
  align-content: start;
  gap: 29px;
}

.contact-form::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(218, 234, 241, 0.36) 18%,
    rgba(70, 157, 201, 0.23) 72%,
    transparent
  );
  content: "";
}

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

.contact-field {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.contact-field label {
  color: #9fb8c5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(181, 211, 226, 0.22);
  border-radius: 0;
  outline: none;
  color: #f1f6f8;
  background: transparent;
  font: inherit;
  font-size: 16px;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.contact-field input {
  height: 48px;
}

.contact-field textarea {
  min-height: 116px;
  padding: 13px 0;
  line-height: 1.55;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(112, 194, 234, 0.78);
  background: linear-gradient(to bottom, transparent, rgba(69, 153, 196, 0.045));
  box-shadow: 0 1px 0 rgba(112, 194, 234, 0.2);
}

.contact-form__submit {
  width: 100%;
  margin-top: 7px;
  border-color: rgba(151, 194, 215, 0.18);
  color: #9dabb2;
  cursor: not-allowed;
  opacity: 0.62;
}

.contact-form__note {
  max-width: 460px;
  margin: -12px 0 0;
  color: #8fa5af;
  font-size: 12px;
  line-height: 1.55;
}

.contact-animated .contact-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.contact-animated .contact-details {
  transition-delay: 90ms;
}

.contact-animated .contact-form {
  transition-delay: 180ms;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 108px 32px 118px;
  }

  .contact-section__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-section__header .section-kicker {
    margin-bottom: -4px;
  }

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

  .contact-details {
    min-height: 440px;
  }

  .contact-form {
    padding: 68px 0 0;
    border-top: 1px solid rgba(186, 215, 229, 0.14);
    border-left: 0;
  }

  .contact-form::before {
    top: -1px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 234, 241, 0.36) 18%,
      rgba(70, 157, 201, 0.23) 72%,
      transparent
    );
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 86px 20px 96px;
  }

  .contact-section__header h2 {
    font-size: 52px;
  }

  .contact-section__header > p:last-child {
    font-size: 16px;
  }

  .contact-layout {
    margin-top: 60px;
    gap: 62px;
  }

  .contact-details {
    min-height: 0;
    gap: 48px;
  }

  .contact-item {
    padding: 21px 0 22px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .contact-item a {
    font-size: 18px;
  }

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

  .contact-action {
    width: 100%;
  }

  .contact-form {
    padding-top: 58px;
    gap: 25px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-field label {
    font-size: 11px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 16px;
  }
}

.contact-section {
  padding-top: 122px;
  padding-bottom: 132px;
}

.contact-section__header h2 {
  font-size: clamp(48px, 5.45vw, 74px);
}

.contact-layout {
  margin-top: 68px;
  gap: 72px;
}

.contact-details {
  min-height: 430px;
  gap: 48px;
}

.contact-list {
  order: 1;
  border-top: 0;
}

.contact-actions {
  order: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.contact-item {
  padding: 14px 0 18px;
  border-bottom: 0;
}

.contact-item__label {
  position: relative;
}

.contact-item__label::after {
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 9px;
  background: linear-gradient(90deg, rgba(110, 184, 221, 0.48), transparent);
  content: "";
}

.contact-item a {
  font-size: clamp(14px, 1.25vw, 18px);
  white-space: nowrap;
}

.contact-action {
  min-height: 50px;
  padding: 0 15px;
  font-size: 10px;
}

.contact-visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 430px;
  padding-left: 72px;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(186, 215, 229, 0.14);
  background:
    radial-gradient(circle at 76% 55%, rgba(55, 148, 195, 0.13), transparent 33%),
    linear-gradient(118deg, rgba(222, 236, 242, 0.03), transparent 42%);
}

.contact-visual::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(218, 234, 241, 0.36) 18%,
    rgba(70, 157, 201, 0.23) 72%,
    transparent
  );
  content: "";
}

.contact-visual__content {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.contact-visual__eyebrow {
  margin: 0;
  color: #7fb3cf;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-visual h3 {
  max-width: 420px;
  margin: 18px 0 0;
  color: #f0f5f7;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.contact-visual__content > p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: #bdcbd2;
  font-size: 15px;
  line-height: 1.65;
}

.contact-visual__tech {
  position: absolute;
  right: 3%;
  bottom: 42px;
  width: 250px;
  height: 190px;
  opacity: 0.72;
  pointer-events: none;
}

.contact-visual__ring {
  position: absolute;
  border: 1px solid rgba(151, 200, 224, 0.22);
  border-radius: 50%;
}

.contact-visual__ring--outer {
  right: -34px;
  bottom: -44px;
  width: 230px;
  height: 230px;
}

.contact-visual__ring--inner {
  right: 18px;
  bottom: 8px;
  width: 126px;
  height: 126px;
  border-color: rgba(214, 231, 239, 0.16);
}

.contact-visual__axis {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 218px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 232, 241, 0.46), #4f9bc8, transparent);
  box-shadow: 0 0 6px rgba(79, 155, 200, 0.18);
  transform: rotate(-18deg);
}

.contact-visual__node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(222, 237, 244, 0.82);
  border-radius: 50%;
  background: #367fa8;
  box-shadow: 0 0 9px rgba(72, 165, 215, 0.3);
}

.contact-visual__node--one {
  right: 62px;
  bottom: 55px;
}

.contact-visual__node--two {
  right: 155px;
  bottom: 85px;
}

.contact-visual__actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-animated .contact-visual {
  transition-delay: 180ms;
}

@media (max-width: 1180px) {
  .contact-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

@media (max-width: 900px) {
  .contact-section {
    padding-top: 102px;
    padding-bottom: 112px;
  }

  .contact-layout {
    gap: 64px;
  }

  .contact-details {
    min-height: 0;
    gap: 50px;
  }

  .contact-actions {
    order: 1;
  }

  .contact-list {
    order: 2;
  }

  .contact-visual {
    min-height: 400px;
    padding: 62px 0 0;
    border-top: 1px solid rgba(186, 215, 229, 0.14);
    border-left: 0;
  }

  .contact-visual::before {
    top: -1px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(218, 234, 241, 0.36) 18%,
      rgba(70, 157, 201, 0.23) 72%,
      transparent
    );
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding-top: 82px;
    padding-bottom: 92px;
  }

  .contact-section__header h2 {
    font-size: 49px;
  }

  .contact-layout {
    margin-top: 52px;
  }

  .contact-item {
    padding: 11px 0 16px;
  }

  .contact-item a {
    font-size: clamp(13px, 4vw, 16px);
  }

  .contact-action,
  .contact-visual__actions .contact-action {
    width: 100%;
    min-height: 52px;
    font-size: 11px;
  }

  .contact-visual {
    min-height: 420px;
    padding-top: 54px;
  }

  .contact-visual h3 {
    max-width: 310px;
    font-size: 34px;
  }

  .contact-visual__content > p:last-child {
    max-width: 315px;
    font-size: 15px;
  }

  .contact-visual__tech {
    right: -18%;
    bottom: 86px;
    opacity: 0.58;
  }

  .contact-visual__actions {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding-top: 132px;
  padding-bottom: 138px;
  background:
    radial-gradient(ellipse at 18% 38%, rgba(53, 145, 191, 0.12), transparent 35%),
    radial-gradient(ellipse at 84% 52%, rgba(205, 226, 235, 0.065), transparent 30%),
    linear-gradient(145deg, #08161d 0%, #102731 52%, #071219 100%);
}

.contact-layout {
  margin-top: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 82px;
}

.contact-lead {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  padding: 24px 0 12px;
  justify-content: space-between;
  flex-direction: column;
}

.contact-lead::before {
  position: absolute;
  top: -22%;
  left: -28%;
  width: 520px;
  height: 440px;
  border: 1px solid rgba(161, 204, 225, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-lead__content {
  position: relative;
  z-index: 1;
}

.contact-lead h2 {
  margin: 0;
  color: #f4f8fa;
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 410;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.contact-lead p {
  max-width: 520px;
  margin: 34px 0 0;
  color: #c5d2d8;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.contact-lead .contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 520px;
  order: initial;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-lead .contact-action {
  min-height: 56px;
  padding: 0 20px;
  font-size: 11px;
}

.contact-visual {
  min-height: 520px;
  padding: 54px 54px 46px 76px;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 72% 68%, rgba(52, 148, 197, 0.17), transparent 34%),
    radial-gradient(circle at 38% 18%, rgba(220, 235, 242, 0.065), transparent 24%),
    linear-gradient(125deg, rgba(219, 235, 242, 0.035), transparent 43%);
}

.contact-visual::after {
  position: absolute;
  top: -35%;
  left: 24%;
  width: 32%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(224, 238, 244, 0.045), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
}

.contact-visual__content {
  max-width: 520px;
}

.contact-visual h3 {
  max-width: 500px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.contact-visual__description {
  max-width: 480px;
  margin: 24px 0 0;
  color: #bdcbd2;
  font-size: 16px;
  line-height: 1.65;
}

.contact-visual__audience {
  margin: 30px 0 0;
  color: #9eb6c2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-visual__audience span {
  padding: 0 7px;
  color: #559bc1;
}

.contact-visual__tech {
  right: -2%;
  bottom: 4px;
  width: 370px;
  height: 280px;
  opacity: 0.8;
}

.contact-visual__ring--outer {
  right: -18px;
  bottom: -58px;
  width: 310px;
  height: 310px;
}

.contact-visual__ring--inner {
  right: 52px;
  bottom: 12px;
  width: 168px;
  height: 168px;
}

.contact-visual__axis {
  right: 5px;
  bottom: 104px;
  width: 310px;
  background-size: 220% 100%;
  animation: contact-axis-flow 7.5s linear infinite;
}

@keyframes contact-axis-flow {
  to {
    background-position: 220% 0;
  }
}

.contact-visual__node {
  animation: contact-node-pulse 3.8s ease-in-out infinite;
}

.contact-visual__node--one {
  right: 90px;
  bottom: 77px;
}

.contact-visual__node--two {
  right: 216px;
  bottom: 119px;
  animation-delay: -1.8s;
}

@keyframes contact-node-pulse {
  50% {
    box-shadow:
      0 0 0 7px rgba(56, 143, 188, 0.055),
      0 0 13px rgba(72, 165, 215, 0.4);
  }
}

.contact-animated .contact-lead {
  transition-delay: 70ms;
}

.contact-animated .contact-visual {
  transition-delay: 170ms;
}

@media (max-width: 900px) {
  .contact-section {
    padding-top: 102px;
    padding-bottom: 112px;
  }

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

  .contact-lead {
    min-height: 440px;
  }

  .contact-lead .contact-actions {
    order: initial;
  }

  .contact-visual {
    min-height: 500px;
    padding: 64px 38px 42px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding-top: 86px;
    padding-bottom: 96px;
  }

  .contact-layout {
    gap: 62px;
  }

  .contact-lead {
    min-height: 0;
    padding-top: 10px;
    gap: 46px;
  }

  .contact-lead h2 {
    font-size: 56px;
  }

  .contact-lead p {
    margin-top: 27px;
    font-size: 17px;
  }

  .contact-lead .contact-actions {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 480px;
    padding: 54px 0 38px;
  }

  .contact-visual h3 {
    max-width: 330px;
    font-size: 39px;
  }

  .contact-visual__description {
    max-width: 330px;
    font-size: 15px;
  }

  .contact-visual__audience {
    max-width: 330px;
    line-height: 1.7;
  }

  .contact-visual__tech {
    right: 0;
    bottom: 5px;
    width: 320px;
    transform: scale(0.86);
    transform-origin: right bottom;
    opacity: 0.62;
  }
}

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

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

  .brand-bubble,
  .orbit-track,
  .orbit-track::after {
    animation: none !important;
  }

  .brand-bubble {
    translate: none;
    scale: 1;
  }

  .criteria-animated .criteria-reveal,
  .connection-animated .connection-reveal,
  .contact-animated .contact-reveal {
    opacity: 1;
    transform: none;
  }

  .connection-route__pulse,
  .connection-stop__marker,
  .connection-scene::after,
  .contact-visual__axis,
  .contact-visual__node {
    animation: none !important;
  }
}

/* Contacto final: jerarquía editorial y panel técnico */
.contact-section {
  padding-top: 112px;
  padding-bottom: 120px;
  background:
    radial-gradient(ellipse at 10% 28%, rgba(48, 135, 181, 0.14), transparent 34%),
    radial-gradient(ellipse at 83% 46%, rgba(117, 176, 207, 0.1), transparent 30%),
    linear-gradient(145deg, #07151c 0%, #0d242e 52%, #061118 100%);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
}

.contact-lead {
  min-height: 500px;
  padding: 44px 0 28px;
}

.contact-lead::after {
  position: absolute;
  right: 4%;
  bottom: 29%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, rgba(100, 176, 214, 0.3), transparent);
  content: "";
  pointer-events: none;
}

.contact-lead .contact-lead__eyebrow {
  margin: 0 0 25px;
  color: #75b2d2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-lead h2 {
  font-size: clamp(52px, 5.35vw, 72px);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.contact-lead__content > p:not(.contact-lead__eyebrow) {
  max-width: 485px;
  margin-top: 28px;
  color: #c8d5da;
  font-size: clamp(16px, 1.42vw, 19px);
  line-height: 1.65;
}

.contact-lead__actions {
  position: relative;
  z-index: 2;
}

.contact-lead .contact-actions {
  max-width: 500px;
}

.contact-lead .contact-action {
  min-height: 60px;
  border-color: rgba(150, 198, 221, 0.22);
  background: linear-gradient(135deg, rgba(130, 180, 204, 0.08), rgba(6, 22, 30, 0.15));
  box-shadow: inset 0 1px rgba(235, 247, 251, 0.055);
}

.contact-lead .contact-action--primary {
  border-color: rgba(83, 166, 207, 0.42);
  background:
    linear-gradient(135deg, rgba(54, 145, 190, 0.25), rgba(16, 56, 75, 0.22)),
    rgba(8, 29, 39, 0.7);
}

.contact-lead .contact-action:hover {
  border-color: rgba(114, 190, 227, 0.58);
  background-color: rgba(31, 91, 119, 0.22);
  box-shadow:
    inset 0 1px rgba(235, 247, 251, 0.08),
    0 12px 30px rgba(0, 8, 13, 0.22);
}

.contact-lead .contact-lead__audience {
  display: flex;
  margin: 22px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #819da9;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-lead__audience span {
  padding: 6px 9px;
  border: 1px solid rgba(132, 180, 201, 0.12);
  border-radius: 999px;
  background: rgba(143, 190, 211, 0.025);
}

.contact-lead__audience i {
  color: #4f8cab;
  font-style: normal;
}

.contact-visual {
  min-height: 500px;
  padding: 58px 64px;
  overflow: hidden;
  border: 1px solid rgba(150, 199, 220, 0.15);
  border-radius: 4px;
  background:
    radial-gradient(circle at 77% 72%, rgba(54, 151, 199, 0.2), transparent 31%),
    radial-gradient(circle at 26% 7%, rgba(217, 233, 240, 0.085), transparent 25%),
    linear-gradient(142deg, rgba(30, 71, 88, 0.52), rgba(7, 24, 33, 0.76) 54%, rgba(10, 35, 46, 0.86));
  box-shadow:
    inset 0 1px rgba(231, 243, 248, 0.08),
    inset 34px 0 70px rgba(109, 163, 189, 0.025),
    0 30px 80px rgba(0, 7, 12, 0.28);
}

.contact-visual::before {
  width: 74%;
  background: linear-gradient(90deg, transparent, rgba(133, 191, 219, 0.36), transparent);
}

.contact-visual__content {
  position: relative;
  z-index: 3;
  max-width: 440px;
}

.contact-visual__eyebrow {
  color: #83b9d3;
}

.contact-visual__statement {
  max-width: 370px;
  margin: 25px 0 0;
  color: #e5edf0;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.contact-benefits {
  display: grid;
  max-width: 390px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  display: grid;
  min-height: 64px;
  padding: 0 0 0 5px;
  align-items: center;
  grid-template-columns: 50px 1fr;
  border-bottom: 1px solid rgba(151, 193, 211, 0.12);
}

.contact-benefits li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85, 170, 212, 0.66));
  content: "";
}

.contact-benefits span {
  color: #5a9bb9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact-benefits strong {
  color: #cbd8de;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0.015em;
}

.contact-visual__tech {
  right: -4%;
  bottom: -22px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .contact-section {
    padding-top: 94px;
    padding-bottom: 104px;
  }

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

  .contact-lead {
    min-height: 430px;
    padding-top: 24px;
  }

  .contact-visual {
    min-height: 470px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .contact-layout {
    gap: 46px;
  }

  .contact-lead {
    min-height: 0;
    padding: 8px 0 0;
    gap: 38px;
  }

  .contact-lead h2 {
    font-size: 48px;
  }

  .contact-lead__content > p:not(.contact-lead__eyebrow) {
    margin-top: 23px;
    font-size: 16px;
  }

  .contact-lead .contact-lead__audience {
    margin-top: 18px;
    gap: 6px;
    font-size: 8px;
  }

  .contact-lead__audience span {
    padding: 5px 7px;
  }

  .contact-visual {
    min-height: 455px;
    padding: 46px 28px 36px;
  }

  .contact-visual__statement {
    max-width: 285px;
    font-size: 27px;
  }

  .contact-benefits {
    max-width: 290px;
    margin-top: 36px;
  }

  .contact-benefits li {
    min-height: 58px;
  }

  .contact-visual__tech {
    right: 0;
    bottom: -34px;
    width: 290px;
    transform: scale(0.76);
    opacity: 0.5;
  }
}

/* La escena cinematográfica sustituye cualquier espaciado de versiones anteriores. */
.contact-section {
  min-height: 0;
  padding: 0;
  background: #050e14;
}

.contact-section::after {
  display: none;
}

.contact-cinematic h2 {
  font-size: clamp(49px, 5.1vw, 71px);
}

.contact-cinematic .contact-actions {
  margin-top: 34px;
}

.contact-cinematic__closing {
  bottom: 98px;
}

.contact-cinematic__beam {
  right: 4%;
  width: 38%;
  animation-duration: 13s;
}

.contact-cinematic__automotive {
  filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.09));
}

.contact-cinematic__bodyline {
  border-top-color: rgba(205, 227, 237, 0.27);
  box-shadow:
    inset 0 12px 20px rgba(157, 200, 219, 0.045),
    0 -1px rgba(104, 178, 211, 0.2),
    0 -4px 12px rgba(60, 149, 192, 0.035);
}

@keyframes contact-beam-drift {
  50% {
    opacity: 0.76;
    translate: 30px 0;
  }
}

@media (max-width: 720px) {
  .contact-cinematic h2 {
    font-size: 45px;
  }

  .contact-cinematic .contact-actions {
    margin-top: 28px;
  }

  .contact-cinematic__closing {
    bottom: auto;
    margin-top: 50px;
  }

  .contact-cinematic__beam {
    right: -30%;
    width: 82%;
  }

  .contact-cinematic__automotive {
    filter: drop-shadow(0 -1px 2px rgba(148, 202, 226, 0.055));
  }
}

/* Eco visual del coche de portada en la escena de contacto */
.contact-cinematic__beam {
  top: -38%;
  right: -2%;
  width: 48%;
  height: 174%;
  opacity: 0.48;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(174, 212, 229, 0.035) 34%,
    rgba(79, 159, 198, 0.12) 52%,
    rgba(213, 235, 243, 0.055) 60%,
    transparent 76%
  );
  filter: blur(7px);
  transform: rotate(17deg);
}

.contact-cinematic__beam::after {
  left: 53%;
  width: 1px;
  opacity: 0.45;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(211, 234, 243, 0.32) 47%,
    transparent 77%
  );
  filter: blur(0.5px);
}

.contact-cinematic__automotive {
  top: 3%;
  right: -7%;
  bottom: auto;
  width: min(64vw, 920px);
  height: 78%;
  opacity: 1;
  filter: none;
  pointer-events: none;
  isolation: isolate;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 13%,
    rgba(0, 0, 0, 0.72) 37%,
    #000 68%,
    rgba(0, 0, 0, 0.74) 89%,
    transparent 100%
  );
  animation: contact-car-echo 10s ease-in-out infinite alternate;
}

.contact-cinematic__automotive::before {
  position: absolute;
  z-index: 1;
  inset: -2% -4% -4% 2%;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(119, 186, 216, 0.04), transparent 56%),
    url("assets/images/hero_coche_transparente.png") right 46% / contain no-repeat;
  box-shadow: none;
  content: "";
  opacity: 0.28;
  filter: blur(2.4px) saturate(0.72) brightness(0.92) contrast(1.08);
  transform: scale(1.08) translateX(3%);
  transform-origin: right center;
  mask-image:
    linear-gradient(180deg, transparent 2%, #000 22%, #000 68%, transparent 96%),
    linear-gradient(90deg, transparent 3%, rgba(0, 0, 0, 0.58) 34%, #000 69%);
  mask-composite: intersect;
  animation: none;
}

.contact-cinematic__automotive::after {
  position: absolute;
  z-index: 3;
  top: 4%;
  left: 30%;
  width: 18%;
  height: 92%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 237, 245, 0.055),
    rgba(72, 158, 200, 0.09),
    transparent
  );
  content: "";
  filter: blur(8px);
  opacity: 0.58;
  transform: skewX(-17deg);
  animation: contact-car-sweep 9s ease-in-out infinite;
}

.contact-cinematic__bodyline {
  top: auto;
  right: -2%;
  bottom: 2%;
  z-index: 0;
  width: 88%;
  height: 34%;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 62% 15%, rgba(124, 188, 216, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(160, 203, 221, 0.035), transparent 62%);
  box-shadow: 0 -1px 24px rgba(66, 153, 193, 0.075);
  filter: blur(12px);
  opacity: 0.68;
  transform: none;
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000 76%, transparent);
}

.contact-cinematic__headlamp {
  top: 48%;
  right: 12%;
  z-index: 4;
  width: 31%;
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(101, 185, 223, 0.16) 38%,
    rgba(225, 241, 247, 0.62) 82%,
    transparent
  );
  box-shadow:
    0 0 10px rgba(116, 197, 230, 0.18),
    0 0 30px rgba(49, 142, 184, 0.1);
  clip-path: none;
  opacity: 0.54;
  transform: rotate(-3deg);
}

.contact-cinematic__headlamp::after {
  top: -2px;
  right: 15%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(227, 242, 248, 0.66);
  box-shadow:
    0 0 9px rgba(163, 218, 239, 0.44),
    -138px 32px 0 -1.5px rgba(89, 176, 216, 0.34),
    58px -72px 0 -1.5px rgba(212, 233, 241, 0.3);
  opacity: 0.68;
  animation: contact-glints 6.5s ease-in-out infinite;
}

.contact-cinematic__grille {
  right: 3%;
  bottom: 4%;
  z-index: 2;
  width: 58%;
  height: 25%;
  border: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 12px,
    rgba(134, 184, 205, 0.045) 13px,
    transparent 14px
  );
  filter: blur(0.5px);
  opacity: 0.42;
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 74%, transparent);
  transform: perspective(600px) rotateX(68deg);
}

@keyframes contact-car-echo {
  50% {
    opacity: 0.86;
    transform: translate3d(-5px, 2px, 0);
  }
}

@keyframes contact-car-sweep {
  0%,
  18% {
    opacity: 0;
    translate: -28px 0;
  }

  48% {
    opacity: 0.58;
  }

  78%,
  100% {
    opacity: 0;
    translate: 210px 0;
  }
}

@media (max-width: 720px) {
  .contact-cinematic__beam {
    right: -42%;
    width: 92%;
    opacity: 0.34;
  }

  .contact-cinematic__automotive {
    top: auto;
    right: -30%;
    bottom: -1%;
    width: 112%;
    height: 34%;
    opacity: 0.62;
    mask-image: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.45) 37%,
      #000 70%,
      transparent
    );
  }

  .contact-cinematic__automotive::before {
    inset: -5% -3% -8% 10%;
    opacity: 0.19;
    filter: blur(2.8px) saturate(0.66) brightness(0.9);
  }

  .contact-cinematic__automotive::after {
    display: none;
  }

  .contact-cinematic__headlamp {
    right: 14%;
    opacity: 0.38;
  }

  .contact-cinematic__grille {
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__automotive,
  .contact-cinematic__automotive::after,
  .contact-cinematic__headlamp::after {
    animation: none !important;
  }
}

/* Contacto premium: composición editorial y compatibilidad Safari */
.contact-cinematic {
  min-height: 640px;
  padding-top: 104px;
  padding-bottom: 90px;
  background:
    radial-gradient(ellipse at 80% 39%, rgba(47, 139, 181, 0.2), transparent 34%),
    radial-gradient(ellipse at 66% 91%, rgba(121, 168, 188, 0.075), transparent 26%),
    linear-gradient(103deg, rgba(3, 11, 16, 0.99) 0%, rgba(6, 20, 28, 0.96) 45%, rgba(7, 24, 33, 0.7) 72%, rgba(3, 10, 15, 0.96) 100%),
    #06141b;
}

.contact-cinematic__content {
  width: min(510px, 43vw);
}

.contact-cinematic__audience {
  display: flex;
  margin: 25px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #718993;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-cinematic__audience::before {
  width: 26px;
  height: 1px;
  margin-right: 3px;
  background: linear-gradient(90deg, #4e9bc0, rgba(137, 187, 209, 0.18));
  content: "";
}

.contact-cinematic__audience i {
  color: #3d6f85;
  font-style: normal;
}

.contact-cinematic__automotive {
  top: 1%;
  right: -5%;
  width: min(58vw, 850px);
  height: 73%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 12%,
    rgba(0, 0, 0, 0.72) 34%,
    #000 66%,
    rgba(0, 0, 0, 0.82) 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 12%,
    rgba(0, 0, 0, 0.72) 34%,
    #000 66%,
    rgba(0, 0, 0, 0.82) 91%,
    transparent 100%
  );
}

.contact-cinematic__automotive::before {
  inset: -3% -2% -2% 5%;
  opacity: 0.38;
  filter: blur(1.25px) saturate(0.76) brightness(1.02) contrast(1.13);
  transform: scale(1.04) translateX(2%);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 20%,
    #000 69%,
    rgba(0, 0, 0, 0.65) 82%,
    transparent 98%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 20%,
    #000 69%,
    rgba(0, 0, 0, 0.65) 82%,
    transparent 98%
  );
}

.contact-cinematic__automotive::after {
  top: -8%;
  left: 18%;
  width: 32%;
  height: 112%;
  opacity: 0.42;
  filter: blur(12px);
  animation-name: contact-car-sweep-premium;
}

.contact-cinematic__bodyline {
  right: 1%;
  bottom: -2%;
  width: 92%;
  opacity: 0.56;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 39%, #000 79%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 39%, #000 79%, transparent);
}

.contact-cinematic__headlamp {
  top: 54%;
  right: 10%;
  width: 36%;
  opacity: 0.62;
}

.contact-cinematic__grille {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 34%, #000 74%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 74%, transparent);
}

.contact-cinematic__editorial {
  position: absolute;
  z-index: 5;
  right: max(48px, calc((100vw - 1440px) / 2 + 48px));
  bottom: 58px;
  width: min(390px, 31vw);
  padding-left: 34px;
}

.contact-cinematic__editorial::before {
  position: absolute;
  right: -40px;
  bottom: -12px;
  width: 470px;
  height: 205px;
  border-top: 1px solid rgba(107, 173, 202, 0.12);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-7deg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 38%, transparent);
}

.contact-cinematic__editorial::after {
  position: absolute;
  top: 31px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(174, 211, 226, 0.42),
    rgba(63, 143, 181, 0.2) 54%,
    transparent
  );
  content: "";
}

.contact-cinematic__editorial .contact-cinematic__closing {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: none;
  margin: 0 0 17px;
  color: #7f99a5;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-cinematic__editorial .contact-cinematic__closing::before {
  display: none;
}

.contact-cinematic__editorial ol {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-cinematic__editorial li {
  display: grid;
  min-height: 47px;
  align-items: center;
  grid-template-columns: 42px 1fr;
  border-top: 1px solid rgba(159, 194, 209, 0.1);
}

.contact-cinematic__editorial li:last-child {
  border-bottom: 1px solid rgba(159, 194, 209, 0.07);
}

.contact-cinematic__editorial li span {
  color: #4f93b1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-cinematic__editorial li strong {
  color: #cad7dc;
  font-size: 13px;
  font-weight: 510;
  letter-spacing: 0.02em;
}

@keyframes contact-car-sweep-premium {
  0%,
  14% {
    opacity: 0;
    transform: skewX(-17deg) translateX(-42px);
  }

  48% {
    opacity: 0.46;
  }

  82%,
  100% {
    opacity: 0;
    transform: skewX(-17deg) translateX(250px);
  }
}

@media (max-width: 980px) {
  .contact-cinematic {
    min-height: 680px;
  }

  .contact-cinematic__content {
    width: min(470px, 49vw);
  }

  .contact-cinematic__automotive {
    right: -13%;
    width: 66%;
  }

  .contact-cinematic__editorial {
    width: min(330px, 34vw);
    padding-left: 26px;
  }
}

@media (max-width: 720px) {
  .contact-cinematic {
    min-height: 820px;
    padding-top: 76px;
    padding-bottom: 68px;
  }

  .contact-cinematic__content {
    width: 100%;
  }

  .contact-cinematic__audience {
    max-width: 330px;
    margin-top: 21px;
    gap: 6px;
    font-size: 8px;
  }

  .contact-cinematic__automotive {
    top: auto;
    right: -27%;
    bottom: 12%;
    width: 108%;
    height: 34%;
    opacity: 0.76;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.38) 38%,
      #000 72%,
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.38) 38%,
      #000 72%,
      transparent
    );
  }

  .contact-cinematic__automotive::before {
    inset: -4% -2% -5% 8%;
    opacity: 0.28;
    filter: blur(1.25px) saturate(0.7) brightness(0.98) contrast(1.08);
  }

  .contact-cinematic__editorial {
    right: 20px;
    bottom: 43px;
    width: min(285px, calc(100% - 70px));
    padding-left: 24px;
  }

  .contact-cinematic__editorial::before {
    width: 330px;
    height: 150px;
  }

  .contact-cinematic__editorial li {
    min-height: 39px;
  }

  .contact-cinematic__editorial li strong {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__automotive::after {
    animation: none !important;
  }
}

/* Contacto: silueta completa prerenderizada y composición depurada */
.contact-cinematic__beam {
  top: -32%;
  right: -4%;
  width: 52%;
  height: 166%;
  opacity: 0.3;
  background: linear-gradient(
    96deg,
    transparent 8%,
    rgba(82, 157, 194, 0.035) 36%,
    rgba(157, 204, 225, 0.1) 53%,
    rgba(61, 143, 183, 0.055) 66%,
    transparent 84%
  );
  filter: blur(5px);
  transform: rotate(12deg);
}

.contact-cinematic__beam::after {
  left: 54%;
  height: 52%;
  opacity: 0.28;
}

.contact-cinematic__automotive {
  top: 2%;
  right: 0;
  bottom: auto;
  width: min(66vw, 940px);
  height: 74%;
  opacity: 1;
  filter: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.52) 13%,
    #000 27%,
    #000 89%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.52) 13%,
    #000 27%,
    #000 89%,
    transparent 100%
  );
  animation: contact-silhouette-breathe 11s ease-in-out infinite alternate;
}

.contact-cinematic__automotive::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("assets/images/contact-car-silhouette.png") center / contain no-repeat;
  box-shadow: none;
  content: "";
  opacity: 0.86;
  filter: none;
  transform: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 8%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 8%,
    #000 86%,
    transparent 100%
  );
  animation: none;
}

.contact-cinematic__automotive::after {
  position: absolute;
  z-index: 2;
  top: -15%;
  left: 30%;
  width: 24%;
  height: 126%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(185, 218, 231, 0.055),
    rgba(78, 157, 195, 0.08),
    transparent
  );
  content: "";
  opacity: 0;
  filter: blur(8px);
  transform: skewX(-14deg) translateX(-35px);
  animation: contact-silhouette-sweep 10s ease-in-out infinite;
}

.contact-cinematic__bodyline,
.contact-cinematic__grille {
  display: none;
}

.contact-cinematic__headlamp {
  top: 18%;
  right: 36%;
  z-index: 3;
  display: block;
  width: 3px;
  height: 3px;
  border: 0;
  border-radius: 50%;
  background: rgba(219, 237, 244, 0.62);
  box-shadow:
    0 0 10px rgba(135, 202, 229, 0.34),
    184px 108px 0 -1px rgba(114, 190, 221, 0.3),
    -265px 72px 0 -1.5px rgba(199, 225, 236, 0.23);
  clip-path: none;
  opacity: 0.48;
  transform: none;
  animation: contact-minimal-glints 7s ease-in-out infinite;
}

.contact-cinematic__headlamp::after {
  display: none;
}

.contact-cinematic__editorial {
  right: max(60px, calc((100vw - 1440px) / 2 + 60px));
  bottom: 68px;
  width: auto;
  max-width: 330px;
  padding: 14px 0 0 54px;
}

.contact-cinematic__editorial::before {
  display: none;
  content: none;
}

.contact-cinematic__editorial::after {
  top: 20px;
  bottom: auto;
  left: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #4b91b1, rgba(113, 172, 198, 0.12));
}

.contact-cinematic__editorial .contact-cinematic__closing {
  margin: 0;
  color: #9cafb7;
  font-size: 10px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

@keyframes contact-silhouette-breathe {
  50% {
    opacity: 0.94;
    transform: translate3d(-3px, 1px, 0);
  }
}

@keyframes contact-silhouette-sweep {
  0%,
  17% {
    opacity: 0;
    transform: skewX(-14deg) translateX(-35px);
  }

  48% {
    opacity: 0.46;
  }

  78%,
  100% {
    opacity: 0;
    transform: skewX(-14deg) translateX(280px);
  }
}

@keyframes contact-minimal-glints {
  50% {
    opacity: 0.72;
  }
}

@media (max-width: 980px) {
  .contact-cinematic__automotive {
    right: -5%;
    width: 67%;
  }

  .contact-cinematic__editorial {
    right: 46px;
  }
}

@media (max-width: 720px) {
  .contact-cinematic {
    min-height: 760px;
  }

  .contact-cinematic__automotive {
    top: auto;
    right: 14%;
    bottom: 12%;
    width: 118%;
    height: 36%;
    opacity: 0.82;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.58) 19%,
      #000 34%,
      #000 90%,
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.58) 19%,
      #000 34%,
      #000 90%,
      transparent
    );
  }

  .contact-cinematic__automotive::before {
    opacity: 0.72;
  }

  .contact-cinematic__automotive::after {
    display: none;
  }

  .contact-cinematic__headlamp {
    display: none;
  }

  .contact-cinematic__editorial {
    right: 20px;
    bottom: 35px;
    width: min(285px, calc(100% - 70px));
    padding-left: 42px;
  }

  .contact-cinematic__editorial .contact-cinematic__closing {
    font-size: 8px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cinematic__automotive,
  .contact-cinematic__automotive::after,
  .contact-cinematic__headlamp {
    animation: none !important;
  }
}

/* Pie de página */
.site-footer {
  position: relative;
  background:
    linear-gradient(115deg, rgba(26, 49, 61, 0.12), transparent 38%),
    #02070a;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 3%,
    rgba(164, 190, 202, 0.08) 18%,
    rgba(215, 231, 237, 0.24) 50%,
    rgba(111, 151, 170, 0.09) 82%,
    transparent 97%
  );
  content: "";
}

.site-footer__inner {
  display: grid;
  width: min(1344px, calc(100% - 96px));
  margin: 0 auto;
  padding: 42px 0 30px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 30px 48px;
}

.site-footer__identity {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.footer-brand img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-brand span {
  display: flex;
  padding-left: 11px;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid rgba(131, 169, 187, 0.3);
}

.footer-brand strong {
  color: #e8edef;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand small {
  color: #90a2aa;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__identity p {
  margin: 0;
  color: #74868e;
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-footer__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px clamp(18px, 2.1vw, 32px);
}

.footer-nav a {
  color: #8d9ba1;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #e7eef1;
}

.footer-social {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
}

.footer-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145, 177, 190, 0.18);
  border-radius: 50%;
  color: #81949d;
  background: rgba(119, 159, 177, 0.035);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.footer-social__dot {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(101, 181, 217, 0.52);
  color: #83c7e5;
  background: rgba(76, 157, 193, 0.1);
  box-shadow: 0 0 14px rgba(62, 150, 190, 0.12);
}

.site-footer__copyright {
  margin: 0;
  padding-top: 22px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(170, 197, 208, 0.07);
  color: #82949c;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-align: right;
}

@media (max-width: 900px) {
  .site-footer__inner {
    width: min(100% - 56px, 700px);
    padding-top: 38px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .site-footer__copyright {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-footer__inner {
    width: calc(100% - 40px);
    padding: 32px 0 24px;
    gap: 22px;
  }

  .site-footer__identity {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__identity p {
    font-size: 10px;
    white-space: normal;
  }

  .footer-nav {
    max-width: 330px;
    gap: 12px 20px;
  }

  .site-footer__actions {
    gap: 16px;
  }

  .footer-nav a {
    font-size: 9px;
  }

  .site-footer__copyright {
    padding-top: 18px;
    font-size: 9px;
    line-height: 1.5;
  }
}

/* Sistema cromático unificado: navy, petróleo y reflejo de acero */
:root {
  --bg: #03090d;
  --surface: #0a1b24;
  --surface-deep: #061118;
  --surface-petrol: #0c222c;
  --text: #f2f6f8;
  --muted: #b7c5cc;
  --line: rgba(158, 194, 210, 0.16);
  --accent: #4d91b1;
  --accent-strong: #65a4c1;
  --accent-soft: #abc8d5;
  --steel: #c7d8df;
  --glow: rgba(67, 143, 178, 0.14);
}

body {
  background: var(--bg);
}

.hero {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(53, 129, 163, 0.24) 0%, rgba(24, 71, 91, 0.11) 31%, transparent 56%),
    radial-gradient(ellipse at 70% 91%, rgba(154, 190, 205, 0.055), transparent 32%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.76) 0%, transparent 49%, rgba(2, 8, 12, 0.16) 100%),
    linear-gradient(116deg, #03090d 0%, #0a1b24 51%, #03090e 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(194, 217, 227, 0.03) 50%, transparent 50.1%),
    linear-gradient(rgba(194, 217, 227, 0.02) 1px, transparent 1px);
}

.hero::after {
  background:
    linear-gradient(118deg, transparent 42%, rgba(199, 220, 229, 0.075) 49%, transparent 55%),
    linear-gradient(169deg, transparent 53%, rgba(69, 143, 177, 0.09) 61%, transparent 68%),
    repeating-linear-gradient(90deg, transparent 0 179px, rgba(190, 214, 224, 0.01) 180px);
}

.hero__glow {
  background:
    linear-gradient(128deg, transparent 32%, rgba(196, 218, 227, 0.05) 48%, transparent 62%),
    linear-gradient(166deg, transparent 48%, rgba(70, 142, 176, 0.07) 61%, transparent 72%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(161, 192, 205, 0.01) 120px),
    radial-gradient(ellipse at 56% 46%, rgba(57, 132, 166, 0.14), transparent 50%),
    radial-gradient(ellipse at 74% 70%, rgba(176, 203, 214, 0.05), transparent 35%);
}

.brand-stage {
  background: radial-gradient(
    ellipse at 51% 52%,
    rgba(57, 133, 167, 0.14),
    rgba(8, 27, 36, 0.06) 44%,
    transparent 70%
  );
}

.scene-lighting {
  background:
    linear-gradient(105deg, transparent 32%, rgba(198, 218, 227, 0.055) 49%, transparent 65%),
    radial-gradient(ellipse at 50% 48%, rgba(61, 139, 175, 0.17), rgba(18, 56, 73, 0.07) 38%, transparent 68%);
}

.hero__car-shell {
  --pixel-align-x: 42px;
  top: 52%;
  width: min(108%, 900px);
  height: min(75%, 540px);
}

.hero__car-shell::before {
  inset: 9% 4% 4%;
  background:
    radial-gradient(ellipse at 64% 76%, rgba(0, 0, 0, 0.56) 0 25%, transparent 68%),
    radial-gradient(ellipse at 62% 48%, rgba(55, 132, 167, 0.13), rgba(6, 19, 26, 0.34) 50%, transparent 74%);
  transform: scale(1.03);
}

.hero__car-shell::after {
  z-index: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(8, 21, 29, 0.46), rgba(1, 5, 8, 0.84)),
    radial-gradient(ellipse at 50% 44%, rgba(50, 116, 146, 0.08), transparent 61%);
  inset: 0;
  opacity: 0.68;
  mix-blend-mode: multiply;
  -webkit-mask: url("assets/images/hero_coche_transparente.png") center / contain no-repeat;
  mask: url("assets/images/hero_coche_transparente.png") center / contain no-repeat;
}

.hero__car {
  z-index: 1;
  opacity: 0.9;
  filter:
    saturate(0.82)
    contrast(1.72)
    brightness(0.72)
    drop-shadow(0 8px 24px rgba(0, 5, 8, 0.34));
  mix-blend-mode: screen;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse 58% 60% at 68% 52%, #000 43%, rgba(0, 0, 0, 0.74) 64%, transparent 92%);
  mask-image: radial-gradient(ellipse 58% 60% at 68% 52%, #000 43%, rgba(0, 0, 0, 0.74) 64%, transparent 92%);
}

.orbit-track {
  border-color: rgba(135, 180, 201, 0.15);
  box-shadow: inset 0 0 0 1px rgba(204, 222, 230, 0.015);
}

.orbit-track::after {
  background: conic-gradient(
    from 28deg,
    transparent 0 13%,
    rgba(197, 219, 228, 0.64) 18%,
    rgba(78, 153, 187, 0.42) 23%,
    transparent 31% 67%,
    rgba(157, 191, 206, 0.34) 73%,
    transparent 81%
  );
}

.orbit-track--middle {
  border-color: rgba(174, 204, 216, 0.13);
}

.orbit-track--inner {
  border-color: rgba(78, 157, 192, 0.2);
}

.brand-bubble {
  border-color: rgba(154, 193, 211, 0.17);
  background:
    linear-gradient(145deg, rgba(215, 232, 239, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 23, 31, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 13px 28px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(61, 132, 164, 0.06);
}

.brand-bubble--dark {
  border-color: rgba(126, 177, 200, 0.5);
  background: linear-gradient(145deg, #2b5367 0%, #142f3c 58%, #091b24 100%);
}

.scene-foreground {
  border-top-color: rgba(136, 180, 199, 0.11);
  background: linear-gradient(to bottom, rgba(52, 124, 155, 0.04), transparent 36%);
}

.solutions-section,
.criteria-section,
.connection-section,
.contact-cinematic {
  border-color: rgba(158, 194, 210, 0.13);
}

.solutions-section {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(193, 217, 227, 0.018) 50%, transparent 50.1%),
    radial-gradient(ellipse at 82% 20%, rgba(57, 130, 163, 0.11), transparent 40%),
    radial-gradient(ellipse at 10% 86%, rgba(159, 190, 203, 0.035), transparent 34%),
    linear-gradient(145deg, #071219 0%, #0c202a 50%, #061117 100%);
}

.solution-card {
  border-color: rgba(151, 191, 208, 0.19);
  background:
    linear-gradient(148deg, rgba(218, 232, 238, 0.045), transparent 35%),
    rgba(6, 18, 24, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 45px rgba(0, 0, 0, 0.17);
}

.solution-card:hover,
.solution-card:focus-within {
  border-color: rgba(101, 164, 193, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 28px 62px rgba(0, 0, 0, 0.25),
    0 0 28px rgba(61, 132, 164, 0.06);
}

.solution-card__visual {
  border-bottom-color: rgba(151, 190, 208, 0.17);
  background:
    radial-gradient(circle at 50% 54%, rgba(62, 137, 171, 0.12), transparent 48%),
    linear-gradient(145deg, rgba(161, 194, 208, 0.045), rgba(1, 8, 12, 0.18)),
    #091a22;
}

.solution-card__visual::after {
  background: linear-gradient(90deg, transparent, rgba(94, 166, 198, 0.32), transparent);
}

.solution-card__link,
.contact-cinematic .contact-action {
  border-color: rgba(143, 187, 206, 0.27);
  background: linear-gradient(135deg, rgba(154, 193, 210, 0.075), rgba(6, 20, 27, 0.3));
}

.solution-card:hover .solution-card__link,
.solution-card:focus-within .solution-card__link,
.contact-cinematic .contact-action:hover,
.contact-cinematic .contact-action:focus-visible {
  border-color: rgba(105, 170, 199, 0.48);
  background-color: rgba(55, 126, 157, 0.12);
}

.criteria-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 134, 168, 0.1), transparent 42%),
    linear-gradient(132deg, rgba(188, 212, 222, 0.02), transparent 30%),
    linear-gradient(160deg, #061118 0%, #0b1e27 54%, #051016 100%);
}

.criterion-module {
  border-color: rgba(149, 187, 204, 0.1);
  background:
    radial-gradient(circle at 28% 8%, rgba(201, 220, 228, 0.075), transparent 22%),
    radial-gradient(circle at 78% 31%, rgba(59, 136, 171, 0.08), transparent 31%),
    linear-gradient(150deg, rgba(205, 222, 230, 0.025), transparent 31%),
    linear-gradient(180deg, rgba(15, 38, 49, 0.9), rgba(5, 16, 22, 0.95));
}

.connection-section {
  background:
    radial-gradient(ellipse at 48% 42%, rgba(57, 132, 166, 0.1), transparent 45%),
    radial-gradient(ellipse at 92% 72%, rgba(166, 197, 209, 0.045), transparent 31%),
    linear-gradient(152deg, #051017 0%, #0a1d26 52%, #040e13 100%);
}

.connection-scene {
  background:
    radial-gradient(circle at 18% 52%, rgba(62, 137, 171, 0.11), transparent 18%),
    radial-gradient(circle at 51% 34%, rgba(182, 207, 217, 0.06), transparent 18%),
    radial-gradient(circle at 83% 58%, rgba(57, 130, 163, 0.1), transparent 20%);
}

.connection-route__base {
  stroke: rgba(116, 177, 204, 0.48);
}

.connection-route__pulse {
  stroke: rgba(211, 229, 236, 0.6);
  filter: drop-shadow(0 0 4px rgba(87, 162, 196, 0.3));
}

.connection-stop__marker {
  border-color: rgba(209, 229, 237, 0.76);
  background: #397f9f;
  box-shadow:
    0 0 0 7px rgba(60, 133, 166, 0.08),
    0 0 15px rgba(75, 150, 184, 0.26);
}

.contact-cinematic {
  background:
    radial-gradient(ellipse at 79% 38%, rgba(55, 130, 164, 0.17), transparent 35%),
    radial-gradient(ellipse at 66% 91%, rgba(147, 181, 195, 0.055), transparent 27%),
    linear-gradient(103deg, rgba(3, 10, 15, 0.99) 0%, rgba(6, 19, 26, 0.97) 45%, rgba(8, 27, 36, 0.72) 72%, rgba(3, 10, 14, 0.97) 100%),
    #061219;
}

.contact-cinematic .contact-action--primary {
  border-color: rgba(91, 160, 191, 0.48);
  background: linear-gradient(135deg, rgba(52, 126, 158, 0.31), rgba(10, 42, 56, 0.55));
}

.contact-cinematic__beam {
  background: linear-gradient(
    96deg,
    transparent 8%,
    rgba(74, 144, 176, 0.03) 36%,
    rgba(151, 194, 212, 0.085) 53%,
    rgba(58, 130, 162, 0.045) 66%,
    transparent 84%
  );
}

.site-footer {
  background:
    linear-gradient(115deg, rgba(25, 50, 62, 0.1), transparent 38%),
    #02080c;
}

.site-footer::before {
  background: linear-gradient(
    90deg,
    transparent 3%,
    rgba(139, 177, 194, 0.07) 18%,
    rgba(196, 219, 228, 0.2) 50%,
    rgba(99, 145, 164, 0.075) 82%,
    transparent 97%
  );
}

@media (max-width: 900px) {
  .hero__car-shell {
    top: 52%;
    width: min(108%, 760px);
    height: min(70%, 500px);
  }
}

@media (max-width: 600px) {
  .hero__car-shell {
    top: 51%;
    width: 105%;
    height: 68%;
  }

  .hero__car {
    opacity: 0.86;
  }
}

/* Integración final de siluetas: una sola capa de coche por escena */
.hero__car-shell::before,
.hero__car-shell::after {
  display: none;
  content: none;
}

.hero__car-shell,
.contact-cinematic__automotive {
  isolation: auto;
}

.hero__car {
  opacity: 0.84;
  filter:
    saturate(0.7)
    contrast(2.25)
    brightness(0.58);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 56% 58% at 68% 52%,
    #000 40%,
    rgba(0, 0, 0, 0.66) 61%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 56% 58% at 68% 52%,
    #000 40%,
    rgba(0, 0, 0, 0.66) 61%,
    transparent 90%
  );
}

.contact-cinematic {
  background:
    radial-gradient(ellipse 58% 74% at 78% 42%, rgba(55, 126, 157, 0.075), transparent 72%),
    radial-gradient(ellipse at 66% 94%, rgba(139, 174, 188, 0.035), transparent 34%),
    linear-gradient(
      103deg,
      rgba(3, 10, 15, 0.995) 0%,
      rgba(6, 19, 26, 0.98) 47%,
      rgba(7, 23, 31, 0.88) 72%,
      rgba(3, 10, 14, 0.98) 100%
    ),
    #061219;
}

.contact-cinematic__beam {
  top: -42%;
  right: -12%;
  width: 66%;
  height: 184%;
  opacity: 0.17;
  background: linear-gradient(
    98deg,
    transparent 10%,
    rgba(75, 145, 176, 0.018) 32%,
    rgba(149, 192, 210, 0.06) 52%,
    rgba(58, 130, 162, 0.025) 70%,
    transparent 88%
  );
  filter: blur(13px);
  animation: contact-soft-beam 13s ease-in-out infinite alternate;
}

.contact-cinematic__beam::after {
  opacity: 0.16;
}

.contact-cinematic__automotive {
  -webkit-mask-image: radial-gradient(
    ellipse 65% 70% at 64% 49%,
    #000 48%,
    rgba(0, 0, 0, 0.68) 67%,
    transparent 96%
  );
  mask-image: radial-gradient(
    ellipse 65% 70% at 64% 49%,
    #000 48%,
    rgba(0, 0, 0, 0.68) 67%,
    transparent 96%
  );
}

.contact-cinematic__automotive::before {
  opacity: 0.78;
  filter:
    saturate(0.74)
    contrast(1.9)
    brightness(0.64);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 68% 72% at 63% 49%,
    #000 52%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 98%
  );
  mask-image: radial-gradient(
    ellipse 68% 72% at 63% 49%,
    #000 52%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 98%
  );
}

.contact-cinematic__automotive::after {
  width: 30%;
  opacity: 0;
  filter: blur(15px);
}

@keyframes contact-soft-beam {
  from {
    opacity: 0.12;
    transform: rotate(12deg) translateX(-10px);
  }

  to {
    opacity: 0.2;
    transform: rotate(12deg) translateX(24px);
  }
}

@media (max-width: 720px) {
  .hero__car {
    opacity: 0.8;
  }

  .contact-cinematic__beam {
    right: -54%;
    width: 118%;
    opacity: 0.13;
  }

  .contact-cinematic__automotive::before {
    opacity: 0.7;
    filter:
      saturate(0.7)
      contrast(1.8)
      brightness(0.62);
  }
}

/* Siluetas integradas en la composición orbital y editorial */
.hero__car-shell {
  --pixel-align-x: -96px;
  z-index: 0;
}

.orbit-track {
  z-index: 1;
}

.hero__car {
  opacity: 0.8;
  filter:
    saturate(0.68)
    contrast(2.2)
    brightness(0.56);
}

.contact-cinematic {
  background:
    radial-gradient(ellipse 68% 82% at 76% 53%, rgba(55, 126, 157, 0.06), transparent 76%),
    radial-gradient(ellipse 54% 42% at 73% 91%, rgba(133, 170, 185, 0.04), transparent 72%),
    linear-gradient(
      103deg,
      rgba(3, 10, 15, 0.995) 0%,
      rgba(6, 19, 26, 0.985) 46%,
      rgba(7, 22, 30, 0.91) 73%,
      rgba(3, 10, 14, 0.985) 100%
    ),
    #061219;
}

.contact-cinematic__automotive {
  top: 7%;
  height: 76%;
}

.contact-cinematic__beam {
  top: -34%;
  right: -14%;
  width: 70%;
  height: 178%;
}

.contact-cinematic__automotive::before {
  opacity: 0.74;
}

@media (max-width: 900px) {
  .hero__car-shell {
    --pixel-align-x: -58px;
  }
}

@media (max-width: 720px) {
  .hero__car-shell {
    --pixel-align-x: -52px;
  }

  .contact-cinematic__automotive {
    top: auto;
    bottom: 7%;
    height: 36%;
  }
}

/* Supresión selectiva de órbitas bajo la silueta del hero */
.hero__car-shell {
  z-index: 1;
}

.orbit-track {
  z-index: 0;
}

.hero__car-shell::before {
  position: absolute;
  z-index: 0;
  display: block;
  background: radial-gradient(
    ellipse 58% 57% at 66% 52%,
    rgba(4, 13, 18, 0.97) 0 41%,
    rgba(5, 16, 22, 0.78) 56%,
    rgba(6, 19, 26, 0.3) 70%,
    transparent 86%
  );
  content: "";
  inset: 5% -2% 2% 6%;
  pointer-events: none;
  transform: none;
}

.hero__car-shell::after {
  display: none;
  content: none;
}

.hero__car {
  z-index: 1;
}

/* Ajuste de legibilidad del foco automotriz */
.brand-stage {
  background: radial-gradient(
    ellipse at 51% 52%,
    rgba(54, 126, 158, 0.085),
    rgba(7, 24, 32, 0.04) 46%,
    transparent 72%
  );
}

.scene-lighting {
  background:
    linear-gradient(105deg, transparent 32%, rgba(190, 214, 224, 0.035) 49%, transparent 65%),
    radial-gradient(ellipse at 50% 49%, rgba(58, 130, 162, 0.105), rgba(15, 48, 63, 0.045) 40%, transparent 70%);
}

.hero__car-shell::before {
  background: radial-gradient(
    ellipse 61% 60% at 66% 52%,
    rgba(3, 10, 14, 0.99) 0 44%,
    rgba(4, 14, 20, 0.88) 59%,
    rgba(5, 17, 23, 0.38) 73%,
    transparent 89%
  );
  inset: 3% -4% 0 3%;
}

.hero__car {
  opacity: 0.84;
  filter:
    saturate(0.66)
    contrast(2.34)
    brightness(0.55);
}

.brand-bubble--large.brand-bubble--near {
  opacity: 0.93;
}

.brand-bubble--large.brand-bubble--foreground {
  opacity: 0.88;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 22px 46px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(61, 137, 170, 0.09);
}

.brand-bubble--large.brand-bubble--near:hover,
.brand-bubble--large.brand-bubble--foreground:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .hero__car {
    opacity: 0.82;
  }
}

/* Integración definitiva de los coches en hero y contacto */
.brand-stage {
  background: radial-gradient(
    ellipse at 51% 52%,
    rgba(54, 126, 158, 0.052),
    rgba(7, 24, 32, 0.028) 48%,
    transparent 73%
  );
}

.scene-lighting {
  background:
    linear-gradient(105deg, transparent 34%, rgba(190, 214, 224, 0.024) 49%, transparent 63%),
    radial-gradient(ellipse at 50% 50%, rgba(58, 130, 162, 0.064), rgba(15, 48, 63, 0.03) 43%, transparent 72%);
}

.hero__car-shell::before {
  inset: 1% -6% -2% 1%;
  background: radial-gradient(
    ellipse 65% 64% at 66% 54%,
    rgba(3, 10, 14, 0.998) 0 48%,
    rgba(4, 14, 20, 0.92) 62%,
    rgba(5, 17, 23, 0.38) 76%,
    transparent 91%
  );
}

.hero__car {
  opacity: 0.84;
  filter:
    saturate(0.64)
    contrast(2.38)
    brightness(0.54);
}

.contact-cinematic {
  background-color: #061219;
  background-image:
    radial-gradient(ellipse at 77% 60%, rgba(55, 126, 157, 0.038), rgba(25, 67, 84, 0.018) 44%, transparent 76%),
    radial-gradient(ellipse at 72% 94%, rgba(133, 170, 185, 0.024), transparent 70%),
    linear-gradient(
      103deg,
      rgba(3, 10, 15, 0.995) 0%,
      rgba(6, 19, 26, 0.985) 46%,
      rgba(7, 22, 30, 0.93) 74%,
      rgba(3, 10, 14, 0.988) 100%
    );
}

.contact-cinematic__automotive {
  top: 14%;
  height: 76%;
  -webkit-mask-image: radial-gradient(
    ellipse 55% 68% at 66% 58%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.16) 73%,
    transparent 92%
  );
  mask-image: radial-gradient(
    ellipse 55% 68% at 66% 58%,
    #000 38%,
    rgba(0, 0, 0, 0.72) 55%,
    rgba(0, 0, 0, 0.16) 73%,
    transparent 92%
  );
}

.contact-cinematic__automotive::before {
  opacity: 0.76;
  filter:
    saturate(0.72)
    contrast(1.94)
    brightness(0.63);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.03) 8%,
    rgba(0, 0, 0, 0.35) 15%,
    #000 23%,
    #000 76%,
    rgba(0, 0, 0, 0.22) 87%,
    transparent 98%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.03) 8%,
    rgba(0, 0, 0, 0.35) 15%,
    #000 23%,
    #000 76%,
    rgba(0, 0, 0, 0.22) 87%,
    transparent 98%
  );
}

.contact-cinematic__beam {
  top: -28%;
  right: -16%;
  width: 74%;
  height: 172%;
  opacity: 0.12;
  filter: blur(9px);
}

@media (max-width: 720px) {
  .contact-cinematic__automotive {
    top: auto;
    bottom: 5%;
    height: 36%;
  }
}
