:root {
  --black: #030706;
  --black-soft: #07100c;
  --green-deep: #0a2017;
  --green: #22e394;
  --green-light: #75f7bd;
  --green-muted: #0f8057;
  --white: #f4f7f5;
  --off-white: #dfe7e3;
  --muted: #91a29a;
  --line: rgba(221, 240, 230, 0.12);
  --line-strong: rgba(34, 227, 148, 0.28);
  --card: rgba(10, 22, 17, 0.76);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 20px;
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", Inter, "Segoe UI", sans-serif;
}

/* Base y elementos compartidos */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: var(--black);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(3, 7, 6, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-icon {
  width: 27px;
  height: 39px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(20, 193, 175, 0.2));
}

.brand-wordmark {
  width: clamp(150px, 13vw, 190px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  margin-left: auto;
  margin-right: clamp(22px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  color: #bbc6c1;
  font-size: 13px;
  font-weight: 650;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

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

.language-switcher {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  margin-right: 12px;
}

.language-trigger {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(100, 225, 162, 0.22);
  border-radius: 12px;
  color: #f4fbf8;
  background: linear-gradient(145deg, rgba(14, 35, 29, 0.92), rgba(5, 15, 12, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 9px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(100, 225, 162, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 0 0 3px rgba(50, 204, 151, 0.08);
  transform: translateY(-1px);
}

.language-globe {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(83, 219, 169, 0.55);
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}

.language-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.language-code {
  min-width: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 1px 0 2px;
  border-right: 1.5px solid #93aaa0;
  border-bottom: 1.5px solid #93aaa0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 7px;
  border: 1px solid rgba(100, 225, 162, 0.2);
  border-radius: 16px;
  background: rgba(5, 14, 11, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-menu button {
  display: grid;
  width: 100%;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border: 0;
  border-radius: 10px;
  color: #d7e3de;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.language-menu button:hover,
.language-menu button.active {
  color: #fff;
  background: rgba(72, 218, 157, 0.1);
}

.language-menu button > img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.language-menu strong {
  font-size: 13px;
  font-weight: 700;
}

.language-menu small {
  color: #668078;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .language-menu button {
  text-align: right;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(34, 227, 148, 0.12);
  color: #02140d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

.button:hover {
  border-color: var(--green-light);
  background: var(--green-light);
  box-shadow: 0 14px 38px rgba(34, 227, 148, 0.2);
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

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

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 154px 0 0;
  background:
    linear-gradient(90deg, #030706 0%, rgba(3, 7, 6, 0.96) 43%, rgba(3, 7, 6, 0.64) 100%),
    radial-gradient(circle at 76% 35%, #0d3425 0%, #07110d 40%, #030706 70%);
}

/* Panel visual del hero, construido sin imágenes externas */
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(46, 223, 148, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 223, 148, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to right, transparent 10%, black 55%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 10%, black 55%, transparent 100%);
  transform: perspective(600px) rotateX(64deg) scale(1.8) translateY(8%);
  transform-origin: center bottom;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(34, 227, 148, 0.16);
  box-shadow: inset 0 0 140px rgba(34, 227, 148, 0.04);
}

.hero-glow-two {
  top: 250px;
  right: 80px;
  width: 280px;
  height: 280px;
  background: rgba(34, 227, 148, 0.06);
  filter: blur(90px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  gap: 74px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--green);
  box-shadow: 8px 0 18px var(--green);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -3.2px;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  font-size: clamp(54px, 5.7vw, 82px);
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: #a7b5ae;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 27px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7f8f87;
  font-size: 11px;
  font-weight: 600;
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  transform: perspective(1000px) rotateY(-3deg);
  transform-origin: center;
}

.hero-lynx {
  position: absolute;
  top: -48px;
  right: 20px;
  z-index: 0;
  width: 108px;
  height: auto;
  opacity: 0.11;
  filter: saturate(1.2);
  transform: rotate(7deg);
}

.city-label {
  position: absolute;
  top: 14px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #72847a;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1px;
}

.city-label span,
.live-indicator i,
.made-in i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.visual-card {
  position: absolute;
  top: 60px;
  right: 0;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid rgba(107, 235, 177, 0.18);
  border-radius: 18px;
  background: rgba(4, 14, 10, 0.88);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.54), inset 0 1px rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(34, 227, 148, 0.06), transparent 38%);
  pointer-events: none;
}

.visual-topbar {
  position: relative;
  display: flex;
  height: 53px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #6f8178;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 1px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.mock-browser i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #405048;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.live-indicator i {
  width: 5px;
  height: 5px;
}

.visual-body {
  padding: 28px;
}

.metric-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.metric-row span {
  display: block;
  margin-bottom: 4px;
  color: #76887f;
  font-size: 11px;
}

.metric-row strong {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -1.5px;
}

.metric-badge {
  padding: 5px 10px;
  border: 1px solid rgba(34, 227, 148, 0.18);
  border-radius: 30px;
  background: rgba(34, 227, 148, 0.08);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.chart {
  position: relative;
  height: 145px;
  margin: 22px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 36px;
}

.chart-line {
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  background: var(--green);
  clip-path: polygon(0 80%, 13% 70%, 27% 76%, 41% 48%, 54% 56%, 69% 29%, 82% 37%, 100% 0, 100% 2%, 82% 40%, 69% 32%, 54% 59%, 41% 51%, 27% 79%, 13% 73%, 0 83%);
  filter: drop-shadow(0 0 8px rgba(34, 227, 148, 0.7));
}

.chart-fill {
  position: absolute;
  inset: 16px 0 0;
  background: linear-gradient(rgba(34, 227, 148, 0.14), transparent);
  clip-path: polygon(0 80%, 13% 70%, 27% 76%, 41% 48%, 54% 56%, 69% 29%, 82% 37%, 100% 0, 100% 100%, 0 100%);
}

.chart-point {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border: 2px solid #04120c;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 227, 148, 0.14), 0 0 14px var(--green);
}

.point-one { top: 88px; left: 40%; }
.point-two { top: 57px; left: 68%; }
.point-three { top: 14px; right: 0; }

.chart-tooltip {
  position: absolute;
  top: 1px;
  right: 12px;
  z-index: 4;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #0b2117;
  color: var(--green-light);
  font-family: monospace;
  font-size: 9px;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #56665e;
  font-family: monospace;
  font-size: 8px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 23px;
}

.mini-metrics > div {
  position: relative;
  min-width: 0;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.mini-metrics span {
  display: block;
  overflow: hidden;
  color: #66786f;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-metrics strong {
  display: block;
  margin: 3px 0 9px;
  font-family: var(--display);
  font-size: 17px;
}

.mini-metrics i {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-metrics i::after {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(143, 255, 205, 0.16);
  border-radius: 12px;
  background: rgba(7, 21, 15, 0.93);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-top {
  top: 95px;
  left: -50px;
}

.floating-card small,
.floating-card strong {
  display: block;
  white-space: nowrap;
}

.floating-card small {
  color: #73857c;
  font-size: 8px;
}

.floating-card strong {
  font-size: 12px;
}

.floating-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(34, 227, 148, 0.1);
  color: var(--green);
}

.floating-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.barcelona-skyline {
  position: absolute;
  right: -40px;
  bottom: 5px;
  left: 8px;
  display: flex;
  height: 80px;
  align-items: flex-end;
  gap: 7px;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  mask-image: linear-gradient(to top, black, transparent);
}

.barcelona-skyline i {
  flex: 1;
  height: 30px;
  border: 1px solid rgba(34, 227, 148, 0.28);
  background: rgba(34, 227, 148, 0.04);
}

.barcelona-skyline i:nth-child(2) { height: 55px; }
.barcelona-skyline i:nth-child(3) { height: 42px; }
.barcelona-skyline i:nth-child(4) { height: 80px; border-radius: 50% 50% 0 0; }
.barcelona-skyline i:nth-child(5) { height: 49px; }
.barcelona-skyline i:nth-child(6) { height: 65px; }

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.hero-stats > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats > div:not(:first-child) {
  padding-left: 28px;
}

.hero-stats > div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--green);
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.hero-stats > div > span {
  color: #728179;
  font-size: 10px;
  line-height: 1.4;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.section {
  position: relative;
  padding: 132px 0;
}

/* Test digital destacado */
.digital-test {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 50%, rgba(3, 152, 176, 0.1), transparent 26%),
    linear-gradient(135deg, #040a08, #07110d 55%, #06100d);
}

.test-glow {
  position: absolute;
  top: 50%;
  right: 7%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(107, 220, 75, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.test-glow::before,
.test-glow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(3, 152, 176, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.test-glow::before {
  width: 290px;
  height: 290px;
}

.test-glow::after {
  width: 160px;
  height: 160px;
}

.test-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.72fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.test-copy h2 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(45px, 5.2vw, 68px);
  letter-spacing: -3.3px;
  line-height: 1.04;
}

.test-copy h2 em {
  color: var(--green);
  font-style: normal;
}

.test-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}

.test-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.test-features span {
  padding: 18px 13px;
  background: rgba(3, 7, 6, 0.92);
  color: #708078;
  font-size: 9px;
  text-align: center;
}

.test-features strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-family: var(--display);
  font-size: 22px;
}

.test-entry-card {
  position: relative;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(34, 227, 148, 0.2);
  border-radius: 18px;
  background: rgba(5, 15, 11, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 0 50px rgba(3, 152, 176, 0.025);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.test-entry-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background: rgba(3, 152, 176, 0.12);
  filter: blur(38px);
}

.test-card-top {
  position: relative;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  gap: 13px;
  align-items: center;
  margin-bottom: 20px;
}

.test-card-top img {
  width: 36px;
  height: 51px;
  object-fit: contain;
}

.test-card-top span {
  display: block;
  margin-bottom: 3px;
  color: #49746a;
  font-family: monospace;
  font-size: 7px;
  letter-spacing: 0.8px;
}

.test-card-top strong {
  display: block;
  font-size: 19px;
}

.test-card-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.test-entry-card > p {
  position: relative;
  margin-bottom: 24px;
  color: #7b8b83;
  font-size: 11px;
}

.test-entry-card label {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.test-entry-card label > span {
  color: #aab7b0;
  font-size: 10px;
  font-weight: 700;
}

.test-entry-card input {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.test-entry-card input::placeholder {
  color: #425149;
}

.test-entry-card input:focus {
  border-color: rgba(34, 227, 148, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 227, 148, 0.07);
}

.test-start-button {
  width: 100%;
  margin-top: 6px;
}

.test-entry-card > small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: #4f6057;
  font-size: 8px;
}

.test-entry-card > small svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Beneficios y servicios */
.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.section-heading > p:not(.eyebrow),
.split-heading > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.service-card h3,
.process-step h3,
.case-content h3,
.why-list h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.55px;
}

.service-card p,
.process-step p,
.case-content p,
.why-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.services {
  border-top: 1px solid var(--line);
  background: #050b08;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 68px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 19, 14, 0.72);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.service-card::before {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(34, 227, 148, 0.09);
  filter: blur(45px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  background: rgba(11, 28, 20, 0.88);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #43524a;
  font-family: monospace;
  font-size: 10px;
}

.service-icon,
.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid rgba(34, 227, 148, 0.18);
  border-radius: 11px;
  background: rgba(34, 227, 148, 0.06);
  color: var(--green);
}

.service-icon svg,
.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 15px;
  color: #788a81;
  font-size: 10px;
}

.service-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.service-feature-new {
  display: flex;
  gap: 9px;
  align-items: center;
}

.service-feature-new small {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 3px 7px;
  border: 1px solid rgba(82, 222, 255, 0.38);
  border-radius: 4px;
  color: #e8fbff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4ea7ff 0%, #00d9e8 100%);
  box-shadow: 0 4px 15px rgba(0, 195, 235, 0.2);
}

.why-us {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 48%, rgba(34, 227, 148, 0.08), transparent 24%),
    var(--black);
}

/* Identidad y proceso */
.why-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 570px;
}

.why-visual::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(34, 227, 148, 0.1), transparent 66%);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(34, 227, 148, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.orbit-one {
  width: 390px;
  height: 390px;
  animation: orbitSpin 18s linear infinite;
}

.orbit-two {
  width: 255px;
  height: 255px;
  animation: orbitSpin 12s linear reverse infinite;
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lynx-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(34, 227, 148, 0.3);
  border-radius: 50%;
  background: rgba(6, 18, 12, 0.92);
  box-shadow: 0 0 80px rgba(34, 227, 148, 0.12), inset 0 0 40px rgba(34, 227, 148, 0.05);
  transform: translate(-50%, -50%);
}

.lynx-core img {
  width: 47px;
  height: 67px;
  margin-bottom: 7px;
  object-fit: contain;
}

.lynx-core strong {
  font-size: 9px;
  letter-spacing: 1.2px;
}

.lynx-core small {
  color: var(--green);
  font-size: 6px;
  letter-spacing: 1.4px;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07110d;
  color: #9baba3;
  font-family: monospace;
  font-size: 9px;
}

.label-one { top: 15%; left: 15%; }
.label-two { top: 24%; right: 5%; }
.label-three { bottom: 22%; left: 3%; }
.label-four { right: 13%; bottom: 13%; }

.visual-note {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 14px;
  border-left: 1px solid var(--green);
  color: #62736a;
  font-family: monospace;
  font-size: 9px;
  line-height: 1.7;
}

.why-copy .section-heading {
  max-width: 610px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
}

.why-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  min-height: 168px;
  padding: 27px 22px;
  background: var(--black);
}

.why-list article > span {
  padding-top: 2px;
  color: var(--green);
  font-family: monospace;
  font-size: 9px;
}

.why-list p {
  font-size: 12px;
}

.process {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    #050b08;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 86px;
}

.process-line {
  position: absolute;
  top: 24px;
  right: 8%;
  left: 8%;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.process-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), rgba(34, 227, 148, 0.18));
  box-shadow: 0 0 10px var(--green);
  transition: width 1.4s ease 0.2s;
}

.process-track.visible .process-line span {
  width: 100%;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-dot {
  display: grid;
  width: 49px;
  height: 49px;
  margin: 0 auto 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #07110d;
  color: var(--green);
  font-family: monospace;
  font-size: 9px;
  box-shadow: 0 0 0 8px #050b08;
}

.step-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  border: 0;
  background: rgba(34, 227, 148, 0.05);
}

.process-step p {
  max-width: 190px;
  margin-inline: auto;
  font-size: 11px;
}

.cases {
  background: var(--black);
}

/* Casos de éxito conceptuales */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #08100c;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.case-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.case-preview {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.mock-browser {
  position: relative;
  z-index: 5;
  display: flex;
  height: 29px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  background: rgba(3, 7, 6, 0.82);
  color: #5f6e67;
  font-family: monospace;
  font-size: 7px;
}

.mock-browser span {
  margin-left: 6px;
}

.restaurant-scene,
.clinic-scene,
.consulting-scene {
  position: absolute;
  inset: 29px 0 0;
  padding: 35px 28px;
}

.restaurant-scene {
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.92) 0%, rgba(10, 12, 9, 0.58) 58%, rgba(10, 12, 9, 0.15)),
    radial-gradient(circle at 76% 48%, #b56e2f 0 8%, #3a2413 9% 13%, #182118 14% 20%, #17130d 21% 38%, #0d110c 39%);
}

.scene-kicker {
  color: #d4aa72;
  font-family: Georgia, serif;
  font-size: 7px;
  letter-spacing: 2px;
}

.restaurant-scene strong,
.consulting-scene strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 16px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.05;
}

.plate {
  position: absolute;
  top: 61px;
  right: -30px;
  width: 185px;
  height: 185px;
  border: 10px solid rgba(215, 190, 151, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 25px #c5b084, inset 0 0 0 42px #785d33, inset 0 0 0 63px #24422d;
}

.scene-button {
  position: absolute;
  bottom: 35px;
  left: 28px;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 3px;
  background: #d4aa72;
  color: #1c160e;
  font-size: 7px;
  font-weight: 800;
}

.result-pill {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 7;
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 7, 6, 0.82);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.result-pill small,
.result-pill strong {
  display: block;
}

.result-pill small {
  color: #84958d;
  font-size: 7px;
}

.result-pill strong {
  color: var(--green);
  font-size: 18px;
}

.clinic-scene {
  display: flex;
  align-items: center;
  gap: 25px;
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 180, 159, 0.28), transparent 35%),
    linear-gradient(135deg, #e4ded5, #aebfb5);
  color: #24332c;
}

.clinic-logo {
  position: absolute;
  top: 19px;
  left: 25px;
  font-family: Georgia, serif;
  font-size: 16px;
}

.clinic-logo span {
  color: #8f705c;
}

.clinic-scene > div {
  margin-top: 12px;
}

.clinic-scene small {
  display: block;
  margin-bottom: 13px;
  color: #6a7c72;
  font-size: 6px;
  letter-spacing: 1.2px;
}

.clinic-scene strong {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
}

.clinic-line {
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 18px;
  background: #8f705c;
}

.scene-button.light {
  background: #26372e;
  color: #edf2ef;
}

.consulting-scene {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.96), rgba(5, 18, 32, 0.58)),
    #071a27;
}

.consulting-scene .scene-kicker {
  position: relative;
  z-index: 2;
  color: #62b7e7;
  font-family: var(--font);
}

.consulting-scene strong {
  font-family: var(--font);
  font-size: 27px;
  font-weight: 700;
}

.consulting-scene .scene-button {
  background: #69c6f4;
  color: #071a27;
}

.consult-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 9px;
  padding: 20px;
  opacity: 0.4;
  transform: skewY(-8deg);
}

.consult-lines i {
  width: 23px;
  height: 40%;
  background: linear-gradient(#69c6f4, transparent);
}

.consult-lines i:nth-child(2) { height: 58%; }
.consult-lines i:nth-child(3) { height: 72%; }
.consult-lines i:nth-child(4) { height: 90%; }

.case-content {
  padding: 26px;
}

.case-content > div {
  display: flex;
  justify-content: space-between;
  color: var(--green);
  font-family: monospace;
  font-size: 7px;
  letter-spacing: 0.7px;
}

.case-content h3 {
  margin-top: 14px;
  font-size: 21px;
}

.case-content ul {
  display: flex;
  gap: 18px;
  margin: 21px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: #7c8d85;
  font-size: 9px;
  list-style: none;
}

.case-content li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.case-content li::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.case-content li strong {
  color: var(--white);
  font-size: 10px;
}

.case-disclaimer {
  margin: 24px 0 0;
  color: #4f5d56;
  font-size: 9px;
  text-align: right;
}

.faq {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 5% 25%, rgba(34, 227, 148, 0.06), transparent 25%),
    #050b08;
}

/* Preguntas frecuentes y contacto */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--off-white);
  font-size: 15px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

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

.accordion summary span {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--green);
  transition: transform 0.25s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary {
  color: var(--green-light);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details > div {
  overflow: hidden;
}

.accordion details p {
  max-width: 650px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(34, 227, 148, 0.1), transparent 28%),
    #06100b;
}

.contact-grid {
  opacity: 0.12;
  transform: perspective(800px) rotateY(63deg) scale(1.6) translateX(-35%);
  -webkit-mask-image: linear-gradient(to right, black, transparent 75%);
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1fr);
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(42px, 4.4vw, 61px);
}

.contact-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.audit-list {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.audit-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c7d2cc;
  font-size: 12px;
  font-weight: 600;
}

.audit-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

blockquote {
  margin: 42px 0 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--green);
}

blockquote p {
  margin: 0;
  color: #a9b7b0;
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

blockquote footer {
  margin-top: 10px;
  color: #5f7067;
  font-size: 9px;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(128, 255, 198, 0.18);
  border-radius: 18px;
  background: rgba(8, 20, 14, 0.86);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.form-heading > span {
  color: var(--green);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 1px;
}

.form-heading strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -1px;
}

.form-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-top: 30px;
}

.form-grid label {
  position: relative;
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  color: #b9c5bf;
  font-size: 10px;
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  outline: 0;
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-grid input {
  height: 47px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #53625b;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(34, 227, 148, 0.52);
  background: rgba(34, 227, 148, 0.025);
  box-shadow: 0 0 0 3px rgba(34, 227, 148, 0.07);
}

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

.field-error {
  display: none;
  color: #ff8c8c;
  font-size: 8px;
}

.form-grid label.invalid input,
.form-grid label.invalid textarea {
  border-color: rgba(255, 100, 100, 0.62);
}

.form-grid label.invalid .field-error {
  display: block;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 19px;
  color: #687970;
  font-size: 9px;
  line-height: 1.6;
}

.privacy-check input {
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.inline-legal {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9baca3;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 23px;
}

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(34, 227, 148, 0.24);
  border-radius: 7px;
  background: rgba(34, 227, 148, 0.06);
  color: var(--green-light);
  font-size: 10px;
  text-align: center;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  border-color: rgba(255, 100, 100, 0.24);
  background: rgba(255, 100, 100, 0.06);
  color: #ffadad;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #526159;
  font-size: 8px;
}

.form-note svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.direct-contact {
  position: relative;
  padding: 94px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 100%, rgba(3, 152, 176, 0.08), transparent 38%),
    #030706;
}

.direct-contact-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.direct-contact-heading .eyebrow {
  margin: 0;
}

.direct-contact-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -2.4px;
  line-height: 1.08;
  text-align: right;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.contact-channel {
  display: grid;
  min-height: 112px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 19, 14, 0.72);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-channel:hover {
  border-color: var(--line-strong);
  background: rgba(11, 28, 20, 0.88);
  transform: translateY(-4px);
}

.contact-brand-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.contact-brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-icon {
  background: #050706;
}

.gmail-icon {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #f7f7f7;
}

.instagram-icon {
  background: transparent;
}

.contact-channel > span:nth-child(2) {
  min-width: 0;
}

.contact-channel small,
.contact-channel strong {
  display: block;
}

.contact-channel small {
  margin-bottom: 3px;
  color: #697970;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-channel strong {
  overflow: hidden;
  color: #dce5e0;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-channel > i {
  color: #4b5b52;
  font-style: normal;
  transition: color 0.25s ease, transform 0.25s ease;
}

.contact-channel:hover > i {
  color: var(--green);
  transform: translate(2px, -2px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020504;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.85fr 1.1fr;
  gap: 60px;
  padding-block: 72px 58px;
}

.footer-brand > p {
  max-width: 270px;
  margin: 20px 0;
  color: #68776f;
  font-size: 12px;
  line-height: 1.8;
}

.brand-lockup {
  width: 178px;
  height: auto;
}

.made-in {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f5d56;
  font-family: monospace;
  font-size: 8px;
}

.made-in i {
  width: 5px;
  height: 5px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 4px 0 10px;
  color: #d6dfda;
  font-size: 11px;
}

.footer-column a,
.footer-column > span {
  color: #68776f;
  font-size: 10px;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-contact a,
.footer-contact > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #4d705e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-contact .footer-social-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  min-height: 67px;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: #46534c;
  font-size: 8px;
}

.footer-bottom p {
  margin: 0 auto 0 0;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover,
.legal-button:hover {
  color: var(--white);
}

.legal-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.back-to-top {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green);
  font-size: 13px;
}

.legal-dialog {
  width: min(640px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 40px));
  padding: 38px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #07110d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
  color: var(--white);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.legal-dialog h2 {
  margin-bottom: 24px;
  font-size: 38px;
  letter-spacing: -1.8px;
}

.legal-dialog h3 {
  margin: 24px 0 8px;
  font-size: 14px;
}

.legal-dialog p,
.legal-dialog li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.legal-dialog ul {
  padding-left: 18px;
}

.legal-dialog a {
  color: var(--green);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* Animaciones de entrada progresiva */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.case-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3),
.case-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Adaptación responsive */
@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    margin-right: 0;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 45px;
  }

  .floating-card-top {
    left: -20px;
  }

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

  .test-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.72fr);
    gap: 55px;
  }

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

  .why-layout {
    gap: 55px;
  }

  .contact-layout {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .site-header,
  .site-header.scrolled {
    height: 68px;
    background: rgba(3, 7, 6, 0.94);
    border-color: var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .language-switcher {
    margin-left: 8px;
    margin-right: 0;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: flex;
    max-height: 0;
    align-items: stretch;
    gap: 0;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(3, 7, 6, 0.98);
    flex-direction: column;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, border-color 0.25s ease;
  }

  .main-nav.open {
    max-height: 420px;
    border-color: var(--line);
    opacity: 1;
  }

  .main-nav a {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 570px);
    min-height: 500px;
    margin: 0 auto;
    transform: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats > div {
    border-bottom: 1px solid var(--line);
  }

  .hero-stats > div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats > div:nth-child(3),
  .hero-stats > div:nth-child(4) {
    border-bottom: 0;
  }

  .hero-stats > div:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 100px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split-heading > p {
    max-width: 650px;
  }

  .why-layout,
  .faq-layout,
  .contact-layout,
  .test-layout {
    grid-template-columns: 1fr;
  }

  .test-layout {
    gap: 55px;
  }

  .test-copy {
    max-width: 700px;
  }

  .test-entry-card {
    width: min(100%, 570px);
  }

  .direct-contact-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .direct-contact-heading h2 {
    text-align: left;
  }

  .why-visual {
    order: 2;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .faq-layout,
  .contact-layout {
    gap: 65px;
  }

  .faq .section-heading {
    position: static;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 60px;
  }

  .process-line {
    top: 30px;
    bottom: 30px;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .process-line span {
    width: 100%;
    height: 0;
    transition: height 1.4s ease 0.2s;
  }

  .process-track.visible .process-line span {
    width: 100%;
    height: 100%;
  }

  .process-step {
    display: grid;
    min-height: 145px;
    grid-template-columns: 49px 48px 1fr;
    gap: 18px;
    align-items: center;
    text-align: left;
  }

  .step-dot {
    margin: 0;
  }

  .step-icon {
    margin: 0;
  }

  .process-step p {
    grid-column: 3;
    max-width: none;
    margin: -48px 0 0;
    padding-top: 34px;
  }

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

  .case-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .case-preview {
    height: 340px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .case-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .brand-wordmark {
    width: 136px;
  }

  .language-trigger {
    width: 45px;
    justify-content: center;
    padding: 0;
  }

  .language-globe,
  .language-code {
    display: none;
  }

  .language-chevron {
    position: absolute;
    right: 5px;
    bottom: 7px;
    width: 5px;
    height: 5px;
  }

  .language-menu {
    right: -46px;
  }

  html[dir="rtl"] .language-menu {
    right: auto;
    left: -46px;
  }

  .brand-icon {
    width: 23px;
    height: 33px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 62px);
    letter-spacing: -2.4px;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 16px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .visual-card {
    top: 40px;
  }

  .visual-topbar {
    padding-inline: 14px;
  }

  .visual-topbar > span:nth-child(2) {
    display: none;
  }

  .visual-body {
    padding: 20px;
  }

  .chart {
    height: 115px;
  }

  .floating-card-top {
    top: 20px;
    left: -5px;
  }

  .barcelona-skyline {
    display: none;
  }

  .hero-stats {
    margin-top: 50px;
  }

  .hero-stats > div {
    min-height: 80px;
    padding: 13px 12px 13px 0;
    gap: 9px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats > div:not(:first-child) {
    padding-left: 15px;
  }

  .hero-stats > div:nth-child(3) {
    padding-left: 0;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .section {
    padding: 82px 0;
  }

  .test-copy h2 {
    font-size: clamp(39px, 11vw, 52px);
    letter-spacing: -2.4px;
  }

  .test-features {
    grid-template-columns: 1fr;
  }

  .test-entry-card {
    padding: 24px 19px;
  }

  .direct-contact {
    padding: 74px 0;
  }

  .direct-contact-heading h2 {
    font-size: 38px;
  }

  .contact-channel {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding: 18px 15px;
  }

  .contact-brand-icon {
    width: 44px;
    height: 44px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: -2.2px;
  }

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

  .service-card {
    min-height: auto;
  }

  .why-layout {
    gap: 25px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-list article {
    min-height: 140px;
  }

  .why-visual {
    min-height: 450px;
    transform: scale(0.84);
  }

  .process-step {
    grid-template-columns: 49px 1fr;
    gap: 18px;
  }

  .step-icon {
    display: none;
  }

  .process-step p {
    grid-column: 2;
  }

  .case-card {
    display: block;
  }

  .case-preview {
    height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-content {
    display: block;
  }

  .case-disclaimer {
    text-align: left;
  }

  .contact-layout {
    gap: 50px;
  }

  .contact-form {
    padding: 25px 20px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    padding-block: 24px;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    width: calc(100% - 50px);
  }

  .footer-bottom > div {
    order: 3;
    width: 100%;
  }

  .back-to-top {
    margin-left: auto;
  }
}

/* Hero corregido: lince fijo y solo dos servicios visibles */
.hero.hero-services {
  min-height: 940px;
}

.hero-service-stage {
  min-height: 570px;
  margin-top: -24px;
}

.service-orbit-outer {
  width: min(86vw, 1030px);
  height: 430px;
}

.service-orbit-inner {
  width: min(48vw, 560px);
  height: 310px;
}

.lynx-motion-frame {
  top: 48%;
  width: min(39vw, 490px);
}

.lynx-motion-frame::before {
  position: absolute;
  inset: 8% 3%;
  z-index: 0;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(71, 255, 72, 0.12), transparent 68%);
  filter: blur(20px);
  animation: hologram-aura 3.5s ease-in-out infinite alternate;
}

.lynx-motion-frame::after {
  right: 13%;
  bottom: 10%;
  left: 13%;
  height: 7%;
  border: 1px solid rgba(103, 255, 74, 0.32);
  background: rgba(27, 234, 67, 0.055);
  box-shadow: 0 0 22px rgba(78, 255, 84, 0.22);
  filter: blur(1px);
  transform: perspective(240px) rotateX(72deg);
}

.lynx-3d {
  mix-blend-mode: screen;
  filter: saturate(1.12) contrast(1.08) drop-shadow(0 0 22px rgba(69, 255, 62, 0.22));
  animation: lynx-hologram-slow-run 7.5s cubic-bezier(0.16, 0.72, 0.22, 1) infinite;
}

.lynx-motion-trail {
  top: 47%;
  left: 51%;
  width: min(39vw, 500px);
  height: 150px;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(41, 255, 76, 0.07) 62%, rgba(133, 255, 43, 0.17) 91%, transparent),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(83, 255, 70, 0.06) 14px 15px);
  filter: blur(9px);
  transform: translate(-15%, -50%) skewX(-17deg);
}

.orbit-service-card {
  width: clamp(250px, 23vw, 292px);
  min-height: 250px;
  opacity: 1;
  transition:
    left 0.6s ease-in-out,
    top 0.6s ease-in-out,
    transform 0.6s ease-in-out,
    opacity 0.38s ease,
    visibility 0.38s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.orbit-service-card.slot-left {
  left: 14%;
  top: 50%;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.orbit-service-card.slot-right {
  left: 86%;
  top: 50%;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.orbit-service-card.is-hidden {
  left: 50%;
  top: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
}

.service-wheel-controls {
  bottom: 0;
}

.orbit-service-card.is-entering > * {
  animation: service-card-enter 0.6s ease both;
}

@keyframes lynx-hologram-slow-run {
  0% {
    transform: translate3d(7%, 0, 0) scale(0.94) rotateY(-4deg);
    filter: saturate(1.05) contrast(1.04) drop-shadow(0 0 12px rgba(69, 255, 62, 0.12));
  }
  13% {
    transform: translate3d(0, -0.5%, 0) scale(1) rotateY(0deg);
    filter: saturate(1.14) contrast(1.09) drop-shadow(0 0 25px rgba(69, 255, 62, 0.26));
  }
  42% {
    transform: translate3d(-1.2%, 0.5%, 12px) scale(1.012) rotateY(2deg);
  }
  72% {
    transform: translate3d(-2%, -0.4%, 18px) scale(1.02) rotateY(-1deg);
  }
  92% {
    transform: translate3d(-2.4%, 0, 10px) scale(1.018) rotateY(1deg);
  }
  100% {
    transform: translate3d(7%, 0, 0) scale(0.94) rotateY(-4deg);
    filter: saturate(1.05) contrast(1.04) drop-shadow(0 0 12px rgba(69, 255, 62, 0.12));
  }
}

@keyframes hologram-aura {
  from { opacity: 0.45; transform: scale(0.94); }
  to { opacity: 0.9; transform: scale(1.05); }
}

@media (max-width: 1080px) {
  .hero.hero-services {
    min-height: 970px;
  }

  .hero-service-stage {
    min-height: 600px;
  }

  .lynx-motion-frame {
    width: min(41vw, 420px);
  }

  .orbit-service-card {
    width: 235px;
    min-height: 245px;
  }

  .orbit-service-card.slot-left {
    left: 15%;
  }

  .orbit-service-card.slot-right {
    left: 85%;
  }
}

@media (max-width: 860px) {
  .hero-service-stage {
    display: block;
    min-height: 790px;
    margin-top: 24px;
  }

  .lynx-motion-frame {
    position: absolute;
    top: 25%;
    left: 50%;
    width: min(67vw, 470px);
    margin: 0;
    transform: translate(-50%, -50%) perspective(1100px) rotateX(var(--lynx-tilt-y)) rotateY(var(--lynx-tilt-x));
  }

  .lynx-motion-trail {
    top: 25%;
    width: 60%;
  }

  .service-wheel {
    position: absolute;
    inset: 0;
    display: block;
  }

  .orbit-service-card {
    position: absolute;
    width: calc(50% - 9px);
    min-height: 245px;
    transform: none;
  }

  .orbit-service-card.slot-left {
    top: 63% !important;
    left: 0 !important;
    transform: translateY(-50%);
  }

  .orbit-service-card.slot-right {
    top: 63% !important;
    right: 0;
    left: auto !important;
    transform: translateY(-50%);
  }

  .orbit-service-card.is-hidden {
    top: 63% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .orbit-service-card:hover,
  .orbit-service-card:focus-within {
    transform: translateY(-52%);
  }

  .service-wheel-controls {
    position: absolute;
    right: 50%;
    bottom: 0;
    margin: 0;
    transform: translateX(50%);
  }
}

@media (max-width: 620px) {
  .hero-service-stage {
    min-height: 925px;
  }

  .lynx-motion-frame {
    top: 19%;
    width: 92%;
    margin: 0;
  }

  .lynx-motion-trail {
    top: 19%;
    width: 82%;
  }

  .orbit-service-card {
    width: 100%;
    min-height: 235px;
  }

  .orbit-service-card.slot-left {
    top: 49%;
    left: 0;
    transform: none;
  }

  .orbit-service-card.slot-right {
    top: 75%;
    right: auto;
    left: 0;
    transform: none;
  }

  .orbit-service-card.is-hidden {
    top: 62%;
  }

  .orbit-service-card:hover,
  .orbit-service-card:focus-within {
    transform: translateY(-3px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hero 3D y rueda modular de servicios */
.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 90px;
}

.hero.hero-services {
  min-height: 1020px;
  padding: 136px 0 74px;
  background:
    radial-gradient(circle at 50% 54%, rgba(0, 190, 210, 0.12), transparent 28%),
    radial-gradient(circle at 66% 62%, rgba(65, 225, 83, 0.1), transparent 26%),
    linear-gradient(180deg, #020504 0%, #030a07 53%, #020504 100%);
}

.hero.hero-services::after {
  height: 230px;
  background: linear-gradient(transparent, #020504);
}

.hero-services .hero-grid {
  opacity: 0.11;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.hero-services .hero-glow-one {
  top: 31%;
  right: 50%;
  width: min(74vw, 960px);
  height: min(74vw, 960px);
  border-color: rgba(0, 208, 222, 0.1);
  box-shadow: inset 0 0 180px rgba(31, 226, 139, 0.035);
  transform: translateX(50%);
}

.hero-services .hero-glow-two {
  top: 49%;
  right: 50%;
  width: 420px;
  height: 240px;
  background: linear-gradient(90deg, rgba(0, 206, 225, 0.14), rgba(45, 226, 120, 0.12));
  filter: blur(110px);
  transform: translate(50%, -50%);
}

.hero-intro {
  position: relative;
  z-index: 6;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-intro .eyebrow {
  justify-content: center;
}

.hero-intro h1 {
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(48px, 5.8vw, 74px);
}

.hero-intro .hero-lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-intro .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-service-stage {
  --lynx-tilt-x: 0deg;
  --lynx-tilt-y: 0deg;
  position: relative;
  z-index: 3;
  min-height: 680px;
  margin-top: -64px;
  isolation: isolate;
}

.service-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  border: 1px solid rgba(86, 231, 165, 0.1);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.service-orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.service-orbit-outer {
  width: min(92vw, 1120px);
  height: 540px;
}

.service-orbit-outer::after {
  top: 18%;
  left: 5.5%;
}

.service-orbit-inner {
  width: min(67vw, 790px);
  height: 390px;
  border-color: rgba(0, 210, 230, 0.1);
  transform: translate(-50%, -50%) rotate(8deg);
}

.service-orbit-inner::after {
  right: 7%;
  bottom: 14%;
  background: #24d9ec;
  box-shadow: 0 0 22px #24d9ec;
}

.lynx-motion-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(68vw, 880px);
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    perspective(1100px)
    rotateX(var(--lynx-tilt-y))
    rotateY(var(--lynx-tilt-x));
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.lynx-motion-frame::after {
  position: absolute;
  right: 8%;
  bottom: 13%;
  left: 12%;
  height: 10%;
  border-radius: 50%;
  content: "";
  background: rgba(0, 0, 0, 0.78);
  filter: blur(22px);
  transform: scaleX(0.72);
}

.lynx-3d {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: saturate(1.06) contrast(1.03) drop-shadow(0 24px 42px rgba(0, 0, 0, 0.7));
  animation: lynx-progressive-run 6.8s cubic-bezier(0.12, 0.64, 0.17, 1) infinite;
  will-change: transform, opacity;
}

.lynx-motion-trail {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  width: min(54vw, 710px);
  height: 190px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(0, 217, 235, 0.07) 52%, rgba(51, 231, 104, 0.14) 82%, transparent),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(53, 232, 132, 0.055) 19px 20px);
  filter: blur(12px);
  opacity: 0.7;
  transform: translate(-28%, -50%) skewX(-18deg);
  animation: trail-breathe 3.4s ease-in-out infinite alternate;
}

.service-wheel {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.orbit-service-card {
  --card-scale: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(218px, 19vw, 258px);
  min-height: 225px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(132, 242, 190, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(16, 39, 30, 0.52), rgba(4, 15, 11, 0.43)),
    rgba(7, 20, 15, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translate(-50%, -50%) scale(var(--card-scale));
  transition:
    left 0.6s ease-in-out,
    top 0.6s ease-in-out,
    transform 0.35s ease,
    opacity 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  will-change: left, top, transform;
}

.orbit-service-card::before {
  position: absolute;
  top: -70px;
  left: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(34, 227, 148, 0.12);
  filter: blur(45px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.orbit-service-card:hover,
.orbit-service-card:focus-within {
  --card-scale: 1.035;
  z-index: 7;
  border-color: rgba(96, 239, 174, 0.44);
  background:
    linear-gradient(145deg, rgba(18, 52, 38, 0.67), rgba(5, 19, 14, 0.55)),
    rgba(7, 20, 15, 0.58);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.46), 0 0 34px rgba(24, 215, 157, 0.09);
}

.orbit-service-card:hover::before {
  opacity: 1;
}

.orbit-service-card.position-0 {
  left: 13%;
  top: 31%;
}

.orbit-service-card.position-1 {
  left: 87%;
  top: 31%;
}

.orbit-service-card.position-2 {
  left: 13%;
  top: 69%;
}

.orbit-service-card.position-3 {
  left: 87%;
  top: 69%;
}

.orbit-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.orbit-card-top > span {
  color: rgba(155, 185, 169, 0.52);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 1px;
}

.orbit-service-card .service-icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(38, 234, 151, 0.14), rgba(0, 198, 222, 0.07));
}

.orbit-service-card .service-icon svg {
  width: 19px;
  height: 19px;
}

.orbit-service-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.55px;
  line-height: 1.08;
}

.orbit-service-card p {
  position: relative;
  z-index: 1;
  margin: 9px 0 0;
  color: #9aaba2;
  font-size: 11px;
  line-height: 1.55;
}

.orbit-service-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  list-style: none;
}

.orbit-service-card li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 999px;
  color: #84978d;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  line-height: 1.2;
}

.orbit-service-card li::before {
  display: none;
}

.orbit-service-card .service-feature-new {
  padding-right: 4px;
}

.orbit-service-card .service-feature-new small {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #eaffff;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4a9fff, #00dcea);
  box-shadow: 0 4px 13px rgba(0, 206, 231, 0.22);
}

.orbit-service-card.is-entering > * {
  animation: service-card-enter 0.6s ease both;
}

.service-wheel-controls {
  position: absolute;
  right: 50%;
  bottom: 2px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px;
  border: 1px solid rgba(122, 236, 179, 0.16);
  border-radius: 999px;
  background: rgba(3, 13, 9, 0.68);
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(50%);
}

.service-wheel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #bbcbc3;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-wheel-arrow:hover {
  border-color: rgba(52, 232, 150, 0.45);
  color: var(--green-light);
  background: rgba(34, 227, 148, 0.1);
  transform: scale(1.06);
}

.service-wheel-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-wheel-prev svg {
  transform: rotate(180deg);
}

.service-wheel-progress {
  display: grid;
  min-width: 126px;
  text-align: center;
}

.service-wheel-progress span {
  color: #667b70;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-wheel-progress strong {
  margin-top: 2px;
  color: #dbe9e2;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 2px;
}

@keyframes lynx-progressive-run {
  0% {
    opacity: 0;
    transform: translate3d(7%, 0.8%, 0) scale(0.97);
  }
  8% {
    opacity: 1;
  }
  30% {
    transform: translate3d(-1%, -0.7%, 0) scale(1.01);
  }
  64% {
    transform: translate3d(-4%, 0, 0) scale(1.025);
  }
  88% {
    opacity: 1;
    transform: translate3d(-5.3%, 0.25%, 0) scale(1.035);
  }
  100% {
    opacity: 0;
    transform: translate3d(-6.5%, 0, 0) scale(1.04);
  }
}

@keyframes trail-breathe {
  from { opacity: 0.34; transform: translate(-24%, -50%) skewX(-18deg) scaleX(0.9); }
  to { opacity: 0.78; transform: translate(-31%, -50%) skewX(-18deg) scaleX(1.08); }
}

@keyframes service-card-enter {
  from { opacity: 0; transform: translateY(8px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .hero.hero-services {
    min-height: 1100px;
  }

  .hero-service-stage {
    min-height: 735px;
  }

  .lynx-motion-frame {
    width: min(74vw, 790px);
  }

  .orbit-service-card {
    width: 220px;
    min-height: 230px;
    padding: 20px;
  }

  .orbit-service-card.position-0,
  .orbit-service-card.position-2 {
    left: 14%;
  }

  .orbit-service-card.position-1,
  .orbit-service-card.position-3 {
    left: 86%;
  }
}

@media (max-width: 860px) {
  .hero.hero-services {
    min-height: auto;
    padding: 112px 0 76px;
  }

  .hero-intro h1 {
    font-size: clamp(45px, 8.5vw, 66px);
  }

  .hero-service-stage {
    display: grid;
    min-height: auto;
    margin-top: 34px;
  }

  .service-orbit {
    display: none;
  }

  .lynx-motion-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 760px);
    margin: 0 auto -5%;
    transform: perspective(1100px) rotateX(var(--lynx-tilt-y)) rotateY(var(--lynx-tilt-x));
  }

  .lynx-motion-trail {
    top: 17%;
    width: 76%;
    height: 140px;
  }

  .service-wheel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .orbit-service-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: auto;
    min-height: 235px;
    transform: none;
  }

  .orbit-service-card:hover,
  .orbit-service-card:focus-within {
    transform: translateY(-4px);
  }

  .orbit-service-card.position-0 { order: 1; }
  .orbit-service-card.position-1 { order: 2; }
  .orbit-service-card.position-2 { order: 3; }
  .orbit-service-card.position-3 { order: 4; }

  .service-wheel-controls {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    margin-top: 24px;
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero.hero-services {
    padding-top: 102px;
  }

  .hero-intro .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-intro .hero-actions .button {
    width: 100%;
  }

  .lynx-motion-frame {
    width: 118%;
    margin-left: -9%;
    margin-bottom: -1%;
  }

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

  .orbit-service-card {
    min-height: 215px;
    border-radius: 26px;
  }

  .service-wheel-controls {
    width: 100%;
    justify-content: center;
  }
}

/* Ajuste final del hero: lince central permanente y ruleta de dos servicios */
.hero.hero-services {
  min-height: 940px;
}

.hero-service-stage {
  display: block;
  min-height: 570px;
  margin-top: -24px;
}

.lynx-motion-frame {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(31vw, 390px);
  margin: 0;
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    perspective(1100px)
    rotateX(var(--lynx-tilt-y))
    rotateY(var(--lynx-tilt-x));
}

.lynx-3d {
  width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: screen;
  filter: saturate(1.12) contrast(1.08) drop-shadow(0 0 22px rgba(69, 255, 62, 0.22));
  animation: lynx-hologram-slow-run 7.5s cubic-bezier(0.16, 0.72, 0.22, 1) infinite;
}

.lynx-motion-trail {
  top: 47%;
  left: 51%;
  width: min(31vw, 400px);
  height: 130px;
}

.service-wheel {
  position: absolute;
  inset: 0;
  display: block;
}

.orbit-service-card {
  position: absolute;
  width: clamp(250px, 23vw, 292px);
  min-height: 250px;
}

.orbit-service-card.slot-left {
  top: 50%;
  left: 15%;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.orbit-service-card.slot-right {
  top: 50%;
  right: auto;
  left: 85%;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.orbit-service-card.is-hidden {
  top: 50%;
  right: auto;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
}

.service-wheel-controls {
  position: absolute;
  right: 50%;
  bottom: 0;
  margin: 0;
  transform: translateX(50%);
}

@media (max-width: 1080px) {
  .hero-service-stage {
    min-height: 620px;
  }

  .lynx-motion-frame {
    width: min(32vw, 340px);
  }

  .orbit-service-card {
    width: 230px;
  }
}

@media (max-width: 860px) {
  .hero-service-stage {
    min-height: 790px;
    margin-top: 24px;
  }

  .lynx-motion-frame {
    top: 24%;
    width: min(54vw, 390px);
  }

  .lynx-motion-trail {
    top: 24%;
    width: 52%;
  }

  .orbit-service-card {
    width: calc(50% - 9px);
    min-height: 245px;
  }

  .orbit-service-card.slot-left {
    top: 63%;
    left: 0;
    transform: translateY(-50%);
  }

  .orbit-service-card.slot-right {
    top: 63%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
  }

  .orbit-service-card.is-hidden {
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.72);
  }
}

@media (max-width: 620px) {
  .hero-service-stage {
    min-height: 925px;
  }

  .lynx-motion-frame {
    top: 18%;
    width: min(88vw, 390px);
    margin: 0;
  }

  .lynx-motion-trail {
    top: 18%;
    width: 76%;
  }

  .orbit-service-card {
    width: 100%;
    min-height: 235px;
  }

  .orbit-service-card.slot-left {
    top: 42% !important;
    left: 0 !important;
    transform: none;
  }

  .orbit-service-card.slot-right {
    top: 68% !important;
    right: auto;
    left: 0 !important;
    transform: none;
  }

  .orbit-service-card.is-hidden {
    top: 55% !important;
  }
}

/* Hero v7: apertura con lince animado y ruleta con un servicio central */
.hero.hero-services {
  min-height: 980px;
  overflow: hidden;
}

.hero-services .hero-intro {
  position: relative;
  z-index: 12;
  transition:
    transform 1s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.7s ease;
}

.hero-services:not(.services-ready) .hero-intro {
  transform: translateY(52px);
}

.hero-services.services-ready .hero-intro {
  transform: translateY(-64px);
}

.hero-services .hero-service-stage {
  min-height: 540px;
  margin-top: -52px;
  overflow: visible;
}

.hero-services .lynx-motion-frame {
  top: 48%;
  width: min(49vw, 610px);
  opacity: 1;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.75s ease,
    filter 0.75s ease,
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-services .lynx-3d {
  width: 100%;
  opacity: 1;
  mix-blend-mode: screen;
  animation: none;
  filter:
    saturate(1.18)
    contrast(1.08)
    drop-shadow(0 0 20px rgba(67, 255, 72, 0.34));
}

.hero-services .lynx-motion-trail {
  top: 49%;
  width: min(48vw, 600px);
  opacity: 0.72;
  transition:
    opacity 0.65s ease,
    transform 0.9s ease;
}

.hero-services.services-ready .lynx-motion-frame {
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.84);
}

.hero-services.services-ready .lynx-motion-trail {
  opacity: 0;
  transform: translate(-15%, -50%) scaleX(0.72) skewX(-17deg);
}

.hero-services .service-wheel {
  position: absolute;
  inset: 0;
  display: block;
  perspective: 1100px;
}

.hero-services .orbit-service-card {
  position: absolute;
  top: 47% !important;
  z-index: 4;
  width: clamp(300px, 34vw, 410px);
  min-height: 300px;
  cursor: default;
  visibility: visible;
  opacity: 1;
  transition:
    left 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    top 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    width 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    min-height 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    transform 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    opacity 0.45s ease,
    filter 0.45s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-services:not(.services-ready) .orbit-service-card,
.hero-services:not(.services-ready) .service-wheel-controls {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-services.services-ready .orbit-service-card,
.hero-services.services-ready .service-wheel-controls {
  visibility: visible;
}

.hero-services .orbit-service-card.slot-active {
  left: 50% !important;
  z-index: 8;
  cursor: default;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
}

.hero-services .orbit-service-card.slot-previous,
.hero-services .orbit-service-card.slot-next {
  z-index: 5;
  width: clamp(165px, 17vw, 205px);
  min-height: 145px;
  cursor: pointer;
  opacity: 0.58;
  filter: saturate(0.78);
}

.hero-services .orbit-service-card.slot-previous {
  left: 13% !important;
  transform: translate(-50%, -50%) rotateY(12deg) scale(0.88);
}

.hero-services .orbit-service-card.slot-next {
  left: 87% !important;
  transform: translate(-50%, -50%) rotateY(-12deg) scale(0.88);
}

.hero-services .orbit-service-card.slot-previous:hover,
.hero-services .orbit-service-card.slot-next:hover,
.hero-services .orbit-service-card.slot-previous:focus-within,
.hero-services .orbit-service-card.slot-next:focus-within {
  opacity: 0.9;
  filter: saturate(1);
}

.hero-services .orbit-service-card.slot-previous p,
.hero-services .orbit-service-card.slot-next p,
.hero-services .orbit-service-card.slot-previous ul,
.hero-services .orbit-service-card.slot-next ul,
.hero-services .orbit-service-card.slot-previous .orbit-card-top > span,
.hero-services .orbit-service-card.slot-next .orbit-card-top > span {
  display: none;
}

.hero-services .orbit-service-card.slot-previous h2,
.hero-services .orbit-service-card.slot-next h2 {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.15;
}

.hero-services .orbit-service-card.is-hidden {
  left: 50% !important;
  z-index: 1;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.54);
}

.hero-services .service-wheel-controls {
  right: 50%;
  bottom: 4px;
  z-index: 15;
  opacity: 1;
  transform: translateX(50%);
  transition:
    opacity 0.55s ease 0.2s,
    transform 0.7s cubic-bezier(0.22, 0.72, 0.18, 1) 0.15s;
}

.hero-services:not(.services-ready) .service-wheel-controls {
  transform: translate(50%, 24px);
}

.service-wheel-progress {
  min-width: 72px;
}

.service-wheel-progress strong {
  margin: 0;
}

.service-feature-exclusive {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature-exclusive small {
  padding: 3px 8px;
  border: 1px solid rgba(255, 91, 75, 0.42);
  border-radius: 6px;
  background: linear-gradient(135deg, #ff2d55, #b60016);
  box-shadow: 0 5px 18px rgba(255, 45, 85, 0.22);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero.hero-services {
    min-height: 1040px;
  }

  .hero-services:not(.services-ready) .hero-intro {
    transform: translateY(32px);
  }

  .hero-services.services-ready .hero-intro {
    transform: translateY(-36px);
  }

  .hero-services .hero-service-stage {
    min-height: 610px;
    margin-top: -26px;
  }

  .hero-services .lynx-motion-frame {
    top: 40%;
    width: min(78vw, 570px);
  }

  .hero-services .lynx-motion-trail {
    top: 41%;
    width: 72%;
  }

  .hero-services .orbit-service-card {
    top: 45% !important;
    width: min(58vw, 390px);
  }

  .hero-services .orbit-service-card.slot-previous,
  .hero-services .orbit-service-card.slot-next {
    width: min(24vw, 175px);
    min-height: 140px;
  }

  .hero-services .orbit-service-card.slot-previous {
    left: 8% !important;
  }

  .hero-services .orbit-service-card.slot-next {
    left: 92% !important;
  }
}

@media (max-width: 620px) {
  .hero.hero-services {
    min-height: 1060px;
  }

  .hero-services .hero-service-stage {
    min-height: 590px;
    margin-top: -20px;
  }

  .hero-services .lynx-motion-frame {
    top: 36%;
    width: 98%;
  }

  .hero-services .lynx-motion-trail {
    top: 37%;
    width: 90%;
  }

  .hero-services .orbit-service-card {
    top: 43% !important;
    width: min(76vw, 330px);
    min-height: 315px;
  }

  .hero-services .orbit-service-card.slot-previous,
  .hero-services .orbit-service-card.slot-next {
    width: 38vw;
    min-height: 132px;
    padding: 18px 14px;
  }

  .hero-services .orbit-service-card.slot-previous {
    left: -1% !important;
  }

  .hero-services .orbit-service-card.slot-next {
    left: 101% !important;
  }

  .hero-services .orbit-service-card.slot-previous h2,
  .hero-services .orbit-service-card.slot-next h2 {
    font-size: 0.9rem;
  }

  .hero-services .service-wheel-controls {
    width: auto;
    max-width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-services .hero-intro,
  .hero-services .lynx-motion-frame,
  .hero-services .lynx-motion-trail,
  .hero-services .orbit-service-card,
  .hero-services .service-wheel-controls {
    transition-duration: 0.01ms !important;
  }
}

/* Beta 8: hero comercial independiente y servicios en vista dedicada */
.hero-home {
  display: flex;
  min-height: 100svh;
  padding-top: 142px;
  padding-bottom: 40px;
  overflow: hidden;
  align-items: flex-start;
}

.hero-home .hero-intro {
  z-index: 8;
  max-width: 1050px;
}

.hero-home .hero-intro h1 {
  max-width: 1000px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 0.98;
}

.hero-home .hero-lead {
  max-width: 760px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-home .hero-actions {
  margin-top: 30px;
}

.hero-assurances {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(116, 247, 189, 0.13);
  border-radius: 999px;
  background: rgba(6, 22, 15, 0.62);
  color: #b9c9c1;
  font-size: 0.78rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

.hero-assurances svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.hero-lynx-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 45%;
  pointer-events: none;
}

.hero-home .lynx-motion-frame {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(48vw, 650px);
  margin: 0;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-home .lynx-3d {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  mix-blend-mode: screen;
  filter:
    saturate(1.16)
    contrast(1.1)
    brightness(1.07)
    drop-shadow(0 0 16px rgba(66, 255, 91, 0.3))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.5));
  animation: none;
}

.hero-home .lynx-motion-frame::before {
  inset: 10% 6%;
  opacity: 0.7;
}

.hero-home .lynx-motion-frame::after {
  right: 15%;
  bottom: 6%;
  left: 15%;
}

.hero-home .lynx-motion-trail {
  top: 49%;
  left: 52%;
  width: min(48vw, 640px);
  height: 145px;
  opacity: 0.66;
}

.lynx-speed-lines {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(58vw, 760px);
  height: 180px;
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 15px,
      rgba(87, 255, 93, 0.11) 16px,
      transparent 18px
    );
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 72%, transparent);
  transform: translate(-50%, -50%) skewX(-15deg);
  animation: speed-lines-pulse 0.42s ease-in-out infinite alternate;
}

@keyframes speed-lines-pulse {
  from { opacity: 0.22; transform: translate(-48%, -50%) skewX(-15deg) scaleX(0.94); }
  to { opacity: 0.5; transform: translate(-53%, -50%) skewX(-15deg) scaleX(1.03); }
}

.services-showcase {
  position: relative;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 72px;
  overflow: hidden;
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(24, 203, 126, 0.12), transparent 34%),
    linear-gradient(180deg, #020705, #06100c 52%, #030806);
}

.services-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(65, 229, 153, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 229, 153, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}

.services-heading {
  position: relative;
  z-index: 8;
  max-width: 930px;
  text-align: center;
}

.services-heading .eyebrow {
  justify-content: center;
}

.services-heading h2 {
  max-width: 900px;
  margin: 12px auto 0;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
}

.services-heading h2 em {
  color: var(--green);
  font-style: normal;
}

.services-heading > p:last-child {
  max-width: 720px;
  margin: 20px auto 0;
  color: #9badA4;
  font-size: clamp(15px, 1.35vw, 18px);
}

.services-showcase .hero-service-stage {
  min-height: 590px;
  margin-top: 24px;
}

.services-showcase .service-wheel {
  position: absolute;
  inset: 0;
  display: block;
  perspective: 1200px;
}

.services-showcase .orbit-service-card {
  position: absolute;
  top: 46% !important;
  width: min(48vw, 570px);
  min-height: 430px;
  padding: 38px;
  border-radius: 34px;
  visibility: visible;
  opacity: 1;
  background:
    linear-gradient(145deg, rgba(16, 48, 35, 0.91), rgba(4, 16, 11, 0.95)),
    rgba(5, 19, 13, 0.92);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.045);
  transition:
    left 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    width 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    min-height 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    padding 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    transform 0.72s cubic-bezier(0.22, 0.72, 0.18, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}

.services-showcase .orbit-service-card.slot-active {
  left: 50% !important;
  z-index: 9;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
}

.services-showcase .orbit-service-card.slot-previous,
.services-showcase .orbit-service-card.slot-next {
  z-index: 5;
  width: clamp(190px, 20vw, 250px);
  min-height: 190px;
  padding: 24px;
  cursor: pointer;
  opacity: 0.6;
  filter: saturate(0.72) brightness(0.78);
}

.services-showcase .orbit-service-card.slot-previous {
  left: 10% !important;
  transform: translate(-50%, -50%) rotateY(13deg) scale(0.88);
}

.services-showcase .orbit-service-card.slot-next {
  left: 90% !important;
  transform: translate(-50%, -50%) rotateY(-13deg) scale(0.88);
}

.services-showcase .orbit-service-card.slot-previous:hover,
.services-showcase .orbit-service-card.slot-next:hover,
.services-showcase .orbit-service-card.slot-previous:focus-visible,
.services-showcase .orbit-service-card.slot-next:focus-visible {
  opacity: 0.95;
  filter: saturate(1) brightness(1);
}

.services-showcase .orbit-service-card.slot-previous p,
.services-showcase .orbit-service-card.slot-next p,
.services-showcase .orbit-service-card.slot-previous ul,
.services-showcase .orbit-service-card.slot-next ul,
.services-showcase .orbit-service-card.slot-previous .service-result,
.services-showcase .orbit-service-card.slot-next .service-result,
.services-showcase .orbit-service-card.slot-previous .orbit-card-top > span,
.services-showcase .orbit-service-card.slot-next .orbit-card-top > span {
  display: none;
}

.services-showcase .orbit-service-card.slot-previous h2,
.services-showcase .orbit-service-card.slot-next h2 {
  margin-top: 24px;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.1;
}

.services-showcase .orbit-service-card.is-hidden {
  left: 50% !important;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.55);
}

.services-showcase .orbit-card-top {
  align-items: center;
}

.services-showcase .orbit-service-card .service-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(20, 220, 135, 0.12);
}

.services-showcase .orbit-service-card .service-icon svg {
  width: 25px;
  height: 25px;
}

.services-showcase .orbit-card-top > span {
  color: rgba(117, 247, 189, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.services-showcase .orbit-service-card h2 {
  margin-top: 25px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.services-showcase .orbit-service-card > p {
  max-width: 500px;
  margin-top: 18px;
  color: #bcc9c3;
  font-size: 0.98rem;
  line-height: 1.72;
}

.service-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px 14px;
  margin-top: 22px;
  padding: 15px 17px;
  border: 1px solid rgba(101, 246, 177, 0.13);
  border-radius: 16px;
  background: rgba(7, 30, 20, 0.58);
}

.service-result strong {
  color: var(--green-light);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-result span {
  color: #9eafa7;
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-showcase .orbit-service-card ul {
  gap: 8px;
  margin-top: 22px;
}

.services-showcase .orbit-service-card li {
  min-height: 30px;
  padding: 7px 10px;
  border-color: rgba(255, 255, 255, 0.085);
  background: rgba(0, 0, 0, 0.2);
  color: #b8c8c0;
  font-size: 0.72rem;
}

.services-showcase .service-wheel-controls {
  right: 50%;
  bottom: 0;
  z-index: 20;
  transform: translateX(50%);
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 980px;
    padding-top: 118px;
  }

  .hero-home .hero-intro h1 {
    font-size: clamp(45px, 8.5vw, 66px);
  }

  .hero-lynx-stage {
    height: 42%;
  }

  .hero-home .lynx-motion-frame {
    width: min(78vw, 620px);
  }

  .services-showcase {
    padding-top: 104px;
  }

  .services-showcase .hero-service-stage {
    min-height: 620px;
  }

  .services-showcase .orbit-service-card {
    width: min(64vw, 520px);
  }

  .services-showcase .orbit-service-card.slot-previous,
  .services-showcase .orbit-service-card.slot-next {
    width: 190px;
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: 4% !important;
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 96% !important;
  }
}

@media (max-width: 620px) {
  .hero-home {
    min-height: 1060px;
    padding-top: 102px;
  }

  .hero-home .hero-intro h1 {
    font-size: clamp(42px, 12.8vw, 58px);
  }

  .hero-home .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-home .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    gap: 8px;
  }

  .hero-assurances span {
    font-size: 0.7rem;
  }

  .hero-lynx-stage {
    height: 37%;
  }

  .hero-home .lynx-motion-frame {
    width: 108%;
  }

  .services-showcase {
    min-height: 1010px;
    padding-top: 96px;
  }

  .services-heading h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .services-showcase .hero-service-stage {
    min-height: 660px;
    margin-top: 12px;
  }

  .services-showcase .orbit-service-card {
    top: 47% !important;
    width: min(86vw, 360px);
    min-height: 500px;
    padding: 28px 24px;
  }

  .services-showcase .orbit-service-card.slot-previous,
  .services-showcase .orbit-service-card.slot-next {
    width: 42vw;
    min-height: 138px;
    padding: 17px 13px;
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: -7% !important;
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 107% !important;
  }

  .services-showcase .orbit-service-card h2 {
    font-size: 30px;
  }

  .services-showcase .orbit-service-card > p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

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

  .services-showcase .orbit-service-card.slot-previous h2,
  .services-showcase .orbit-service-card.slot-next h2 {
    margin-top: 14px;
    font-size: 0.9rem;
  }
}

/* Beta 9: hero sin lince y carrusel de servicios más limpio */
.hero-home {
  min-height: min(880px, 100svh);
  padding-top: 124px;
  padding-bottom: 80px;
  align-items: center;
}

.hero-home .hero-intro {
  max-width: 1080px;
  margin: auto;
}

.hero-home .hero-intro h1 {
  max-width: 1040px;
  font-size: clamp(54px, 6.1vw, 82px);
  letter-spacing: -0.055em;
}

.hero-home .hero-lead {
  max-width: 750px;
  color: #a7b5ae;
  line-height: 1.65;
}

.hero-home .hero-glow-one {
  top: 30%;
  left: 50%;
  width: 760px;
  height: 520px;
  opacity: 0.25;
  transform: translateX(-50%);
}

.hero-home .hero-glow-two {
  display: none;
}

.services-showcase {
  min-height: 1080px;
  padding-top: 126px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 50% 52%, rgba(39, 220, 145, 0.08), transparent 36%),
    #030706;
}

.services-showcase::before {
  display: none;
}

.services-heading {
  max-width: 980px;
}

.services-heading h2 {
  font-size: clamp(44px, 5.2vw, 70px);
  letter-spacing: -0.045em;
}

.services-heading > p:last-child {
  max-width: 680px;
  color: #98a69f;
  line-height: 1.6;
}

.services-showcase .hero-service-stage {
  width: min(100%, 1440px);
  min-height: 650px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 44px;
  outline: none;
}

.services-showcase .service-wheel {
  perspective: none;
}

.services-showcase .orbit-service-card {
  top: 45% !important;
  width: min(52vw, 620px);
  min-height: 458px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(20, 36, 29, 0.98), rgba(7, 15, 11, 0.99));
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px rgba(255, 255, 255, 0.04);
  transition:
    left 0.68s cubic-bezier(0.32, 0.72, 0, 1),
    width 0.68s cubic-bezier(0.32, 0.72, 0, 1),
    min-height 0.68s cubic-bezier(0.32, 0.72, 0, 1),
    padding 0.68s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.68s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.48s ease,
    filter 0.48s ease,
    box-shadow 0.48s ease;
  will-change: transform, left, opacity;
}

.services-showcase .orbit-service-card::before {
  top: -130px;
  left: -110px;
  width: 310px;
  height: 310px;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(38, 227, 148, 0.12), transparent 69%);
}

.services-showcase .orbit-service-card.slot-active {
  left: 50% !important;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
}

.services-showcase .orbit-service-card.slot-previous,
.services-showcase .orbit-service-card.slot-next {
  top: 45% !important;
  width: 300px;
  min-height: 265px;
  padding: 30px;
  opacity: 0.34;
  filter: saturate(0.7);
}

.services-showcase .orbit-service-card.slot-previous {
  left: 4% !important;
  transform: translate(-50%, -50%) scale(0.92);
}

.services-showcase .orbit-service-card.slot-next {
  left: 96% !important;
  transform: translate(-50%, -50%) scale(0.92);
}

.services-showcase .orbit-service-card.slot-previous:hover,
.services-showcase .orbit-service-card.slot-next:hover,
.services-showcase .orbit-service-card.slot-previous:focus-visible,
.services-showcase .orbit-service-card.slot-next:focus-visible {
  opacity: 0.7;
  filter: saturate(1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.services-showcase .orbit-service-card.is-hidden {
  left: 50% !important;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
}

.services-showcase .hero-service-stage.is-transitioning .orbit-service-card.slot-active {
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.services-showcase .orbit-service-card .service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(38, 227, 148, 0.1);
  box-shadow: none;
}

.services-showcase .orbit-service-card h2 {
  margin-top: 28px;
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: -0.04em;
}

.services-showcase .orbit-service-card > p {
  margin-top: 20px;
  color: #b5c0bb;
  font-size: 1rem;
  line-height: 1.7;
}

.service-result {
  margin-top: 24px;
  padding: 17px 18px;
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.services-showcase .orbit-service-card ul {
  margin-top: 24px;
}

.services-showcase .orbit-service-card li {
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.services-showcase .service-wheel-controls {
  bottom: 22px;
  gap: 14px;
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 19, 0.78);
  backdrop-filter: blur(24px);
}

.services-showcase .service-wheel-arrow {
  width: 46px;
  height: 46px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.055);
}

.services-showcase .service-wheel-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.service-wheel-dots {
  position: absolute;
  right: 50%;
  bottom: -12px;
  z-index: 22;
  display: flex;
  gap: 7px;
  transform: translateX(50%);
}

.service-wheel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    width 0.36s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.3s ease;
}

.service-wheel-dots button.active {
  width: 24px;
  background: var(--green);
}

.service-wheel-dots button:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 820px;
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .services-showcase {
    min-height: 1040px;
  }

  .services-showcase .hero-service-stage {
    min-height: 660px;
  }

  .services-showcase .orbit-service-card {
    width: min(70vw, 560px);
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: -2% !important;
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 102% !important;
  }
}

@media (max-width: 620px) {
  .hero-home {
    min-height: 780px;
    padding-top: 106px;
    padding-bottom: 64px;
  }

  .hero-home .hero-intro h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .services-showcase {
    min-height: 1050px;
    padding-top: 100px;
  }

  .services-showcase .hero-service-stage {
    min-height: 690px;
    overflow: hidden;
    border-radius: 28px;
  }

  .services-showcase .orbit-service-card {
    top: 46% !important;
    width: min(88vw, 370px);
    min-height: 520px;
    padding: 30px 25px;
    border-radius: 30px;
  }

  .services-showcase .orbit-service-card.slot-previous,
  .services-showcase .orbit-service-card.slot-next {
    width: 180px;
    min-height: 150px;
    padding: 18px;
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: -22% !important;
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 122% !important;
  }

  .services-showcase .orbit-service-card h2 {
    font-size: 31px;
  }

  .services-showcase .service-wheel-controls {
    bottom: 32px;
  }

  .service-wheel-dots {
    bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-showcase .orbit-service-card,
  .service-wheel-dots button {
    transition-duration: 0.01ms !important;
  }
}

/* Beta 10: selector directo y carrusel estable */
.service-quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.service-quick-nav button {
  display: grid;
  min-height: 132px;
  padding: 20px;
  place-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  color: #8f9d96;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(7, 14, 11, 0.72);
  cursor: pointer;
  text-align: center;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.service-quick-nav button:hover {
  color: #dce9e2;
  border-color: rgba(59, 229, 151, 0.25);
  background:
    linear-gradient(145deg, rgba(42, 225, 145, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 16, 12, 0.88);
  transform: translateY(-3px);
}

.service-quick-nav button.active {
  color: #effff6;
  border-color: rgba(59, 229, 151, 0.48);
  background:
    linear-gradient(145deg, rgba(41, 223, 143, 0.14), rgba(0, 194, 216, 0.055)),
    rgba(8, 19, 14, 0.96);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.service-quick-nav button:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 4px;
}

.service-quick-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  color: var(--green-light);
  background: rgba(42, 226, 146, 0.09);
}

.service-quick-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-quick-nav strong {
  max-width: 180px;
  font-family: var(--display);
  font-size: 0.98rem;
  line-height: 1.18;
}

.services-showcase {
  min-height: 1240px;
}

.services-showcase .hero-service-stage {
  height: 700px;
  min-height: 700px;
  margin-top: 28px;
  contain: layout paint;
}

.services-showcase .service-wheel {
  height: 100%;
}

.services-showcase .orbit-service-card,
.services-showcase .orbit-service-card.slot-previous,
.services-showcase .orbit-service-card.slot-next {
  top: 46% !important;
  width: min(52vw, 620px);
  height: 520px;
  min-height: 520px;
  padding: 44px;
  box-sizing: border-box;
  transition:
    left 0.64s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.64s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.42s ease,
    filter 0.42s ease,
    box-shadow 0.42s ease;
}

.services-showcase .orbit-service-card.slot-active {
  left: 50% !important;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.services-showcase .orbit-service-card.slot-previous {
  left: 4% !important;
  transform: translate3d(-50%, -50%, 0) scale(0.46);
}

.services-showcase .orbit-service-card.slot-next {
  left: 96% !important;
  transform: translate3d(-50%, -50%, 0) scale(0.46);
}

.services-showcase .orbit-service-card.is-hidden {
  top: 46% !important;
  width: min(52vw, 620px);
  height: 520px;
  min-height: 520px;
  padding: 44px;
  transform: translate3d(-50%, -50%, 0) scale(0.35);
}

.services-showcase .service-wheel-controls {
  bottom: 36px;
}

.service-wheel-dots {
  bottom: 2px;
}

@media (max-width: 900px) {
  .service-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-quick-nav button {
    min-height: 112px;
  }

  .services-showcase {
    min-height: 1320px;
  }

  .services-showcase .hero-service-stage {
    height: 700px;
    min-height: 700px;
  }

  .services-showcase .orbit-service-card,
  .services-showcase .orbit-service-card.slot-previous,
  .services-showcase .orbit-service-card.slot-next,
  .services-showcase .orbit-service-card.is-hidden {
    width: min(72vw, 560px);
    height: 540px;
    min-height: 540px;
    padding: 38px;
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: -9% !important;
    transform: translate3d(-50%, -50%, 0) scale(0.38);
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 109% !important;
    transform: translate3d(-50%, -50%, 0) scale(0.38);
  }
}

@media (max-width: 620px) {
  .service-quick-nav {
    gap: 9px;
    margin-top: 30px;
  }

  .service-quick-nav button {
    min-height: 104px;
    padding: 15px 10px;
    border-radius: 19px;
  }

  .service-quick-icon {
    width: 37px;
    height: 37px;
    border-radius: 11px;
  }

  .service-quick-nav strong {
    font-size: 0.82rem;
  }

  .services-showcase {
    min-height: 1320px;
  }

  .services-showcase .hero-service-stage {
    height: 720px;
    min-height: 720px;
  }

  .services-showcase .orbit-service-card,
  .services-showcase .orbit-service-card.slot-previous,
  .services-showcase .orbit-service-card.slot-next,
  .services-showcase .orbit-service-card.is-hidden {
    top: 45% !important;
    width: min(88vw, 370px);
    height: 550px;
    min-height: 550px;
    padding: 30px 25px;
  }

  .services-showcase .orbit-service-card.slot-previous {
    left: -35% !important;
    transform: translate3d(-50%, -50%, 0) scale(0.34);
  }

  .services-showcase .orbit-service-card.slot-next {
    left: 135% !important;
    transform: translate3d(-50%, -50%, 0) scale(0.34);
  }

  .services-showcase .service-wheel-controls {
    bottom: 46px;
  }

  .service-wheel-dots {
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-quick-nav button {
    transition-duration: 0.01ms !important;
  }
}

/* Chatbot integrado con n8n */
.lynx-chat {
  --chat--color-primary: #22e394;
  --chat--color-primary-shade-50: #18bd79;
  --chat--color-primary-shade-100: #11945e;
  --chat--color-secondary: #07110d;
  --chat--color-white: #f1fff7;
  --chat--color-light: #101d17;
  --chat--color-light-shade-50: #17261f;
  --chat--color-light-shade-100: #22332a;
  --chat--color-medium: #8fa49a;
  --chat--color-dark: #030706;
  --chat--color-disabled: #5f6e66;
  --chat--border-radius: 14px;
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 1500;
  font-family: var(--body);
}

.lynx-chat-launcher {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 0 21px;
  border: 1px solid rgba(90, 255, 179, 0.36);
  border-radius: 999px;
  color: #edfff5;
  background: linear-gradient(135deg, #149762, #0b6d48);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 32px rgba(34, 227, 148, 0.14);
  cursor: pointer;
  font: 700 13px/1 var(--body);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lynx-chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.48), 0 0 38px rgba(34, 227, 148, 0.2);
}

.lynx-chat-ai-ring {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  isolation: isolate;
  box-shadow:
    0 0 16px rgba(70, 137, 255, 0.2),
    0 0 20px rgba(174, 86, 255, 0.16);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lynx-chat-ai-ring::before {
  position: absolute;
  inset: -55%;
  z-index: -2;
  content: "";
  background: conic-gradient(
    from 0deg,
    #4285f4 0deg,
    #21d4fd 82deg,
    #8b5cf6 174deg,
    #ec4899 265deg,
    #4285f4 360deg
  );
  animation: lynx-chat-ai-orbit 2.8s linear infinite;
}

.lynx-chat-ai-ring::after {
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: #07110d;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.035);
}

.lynx-chat-ai-core {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #f4f7ff;
}

.lynx-chat-launcher:hover .lynx-chat-ai-ring,
.lynx-chat-launcher:focus-visible .lynx-chat-ai-ring {
  box-shadow:
    0 0 20px rgba(66, 133, 244, 0.48),
    0 0 26px rgba(139, 92, 246, 0.34),
    0 0 32px rgba(236, 72, 153, 0.2);
  transform: scale(1.06);
}

.lynx-chat-launcher svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes lynx-chat-ai-orbit {
  to {
    transform: rotate(360deg);
  }
}

.lynx-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  width: min(410px, calc(100vw - 32px));
  height: min(670px, calc(100vh - 120px));
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 227, 148, 0.1), transparent 35%),
    #07110d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
  transform: translateY(14px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.lynx-chat-panel.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lynx-chat-header {
  display: grid;
  min-height: 76px;
  grid-template-columns: 43px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 11, 8, 0.78);
}

.lynx-chat-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(34, 227, 148, 0.22);
  border-radius: 13px;
  background: rgba(34, 227, 148, 0.08);
}

.lynx-chat-avatar img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.lynx-chat-header strong,
.lynx-chat-header small {
  display: block;
}

.lynx-chat-header strong {
  color: #effff6;
  font-size: 13px;
}

.lynx-chat-header small {
  margin-top: 4px;
  color: #82958b;
  font-size: 9px;
}

.lynx-chat-header small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 227, 148, 0.7);
}

.lynx-chat-close {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: #819188;
  background: transparent;
  cursor: pointer;
  font-size: 23px;
}

.lynx-chat-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.lynx-chat-consent,
.lynx-chat-error {
  align-self: center;
  padding: 30px;
}

.lynx-chat-consent h2 {
  margin: 12px 0 14px;
  color: #f1fff7;
  font-size: 32px;
  letter-spacing: -1.4px;
  line-height: 1.06;
}

.lynx-chat-consent > p:not(.eyebrow),
.lynx-chat-error p {
  color: #91a49a;
  font-size: 12px;
  line-height: 1.75;
}

.lynx-chat-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0 20px;
  color: #819188;
  font-size: 10px;
  line-height: 1.6;
}

.lynx-chat-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
}

.lynx-chat-start {
  width: 100%;
}

.lynx-chat-start.loading {
  opacity: 0.65;
  pointer-events: none;
}

.lynx-chat-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: #617168;
  font-size: 9px;
}

.lynx-chat-security svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.lynx-chat-container {
  min-height: 0;
  overflow: hidden;
}

.lynx-chat-container,
.lynx-chat-container .chat-layout,
.lynx-chat-container .chat-wrapper {
  width: 100%;
  height: 100%;
}

.lynx-chat-container .chat-header {
  display: none;
}

.lynx-chat-container .chat-body {
  background: transparent;
}

.lynx-chat-container .chat-message {
  max-width: 88%;
  font-size: 12px;
  line-height: 1.55;
}

.lynx-chat-container .chat-input {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: #07110d;
}

.lynx-chat-error strong {
  display: block;
  margin-bottom: 12px;
  color: #f1fff7;
  font-size: 21px;
}

.lynx-chat-error a {
  color: var(--green-light);
}

.lynx-chat-error .button {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 620px) {
  .lynx-chat {
    right: 12px;
    bottom: 12px;
  }

  .lynx-chat-launcher {
    min-width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0 9px;
  }

  .lynx-chat-launcher-label {
    display: none;
  }

  .lynx-chat-ai-ring {
    width: 40px;
    height: 40px;
  }

  .lynx-chat-ai-core {
    width: 34px;
    height: 34px;
  }

  .lynx-chat-panel {
    position: fixed;
    inset: 10px;
    width: auto;
    height: auto;
    border-radius: 20px;
    transform-origin: bottom center;
  }

  .lynx-chat-open {
    overflow: hidden;
  }

  .lynx-chat-consent,
  .lynx-chat-error {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lynx-chat-launcher,
  .lynx-chat-panel {
    transition-duration: 0.01ms !important;
  }

  .lynx-chat-ai-ring::before {
    animation: none;
  }
}
