@charset "UTF-8";

:root {
  --ink: #11130f;
  --paper: #f1efe8;
  --paper-warm: #f8f5ed;
  --white: #ffffff;
  --green: #173d2f;
  --green-dark: #0b1b15;
  --lime: #ddf75f;
  --muted: #6a7068;
  --line: rgba(17, 19, 15, 0.17);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 34px 90px rgba(17, 19, 15, 0.16);
  --radius: 30px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --page-x: clamp(22px, 4.6vw, 78px);
}

/* Explicación directa y común a todos los servicios */
.service-explainer {
  position: relative;
  padding: clamp(64px, 6.5vw, 98px) var(--page-x) clamp(58px, 6vw, 88px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.service-explainer-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 82px);
  padding-bottom: clamp(32px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.service-explainer-head .mini-label {
  padding-top: 8px;
  color: var(--green);
}

.service-explainer-head h2 {
  max-width: 960px;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: 0.92;
}

.service-explainer-head h2 em {
  color: var(--green);
  font-style: normal;
}

.service-explainer-head div > p {
  max-width: 760px;
  margin-top: clamp(20px, 2.4vw, 32px);
  color: rgba(17, 19, 15, 0.68);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
}

.service-explainer-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-explainer-flow li {
  min-height: 220px;
  padding: clamp(22px, 2.5vw, 34px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-explainer-flow li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
}

.service-explainer-flow small,
.service-explainer-result small {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.service-explainer-flow h3 {
  margin-top: 20px;
  font-size: clamp(25px, 2.1vw, 35px);
  line-height: 1;
}

.service-explainer-flow p {
  margin-top: 13px;
  color: rgba(17, 19, 15, 0.66);
  font-size: 13px;
  line-height: 1.48;
}

.service-explainer-result {
  margin-top: 12px;
  padding: clamp(22px, 2.5vw, 34px);
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--green);
  border-radius: 18px;
}

.service-explainer-result small {
  color: var(--lime);
}

.service-explainer-result strong {
  max-width: 900px;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

@media (max-width: 720px) {
  .service-explainer {
    padding: 54px 20px 60px;
  }

  .service-explainer-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }

  .service-explainer-head .mini-label {
    padding-top: 0;
  }

  .service-explainer-head h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .service-explainer-head div > p {
    margin-top: 20px;
    font-size: 14px;
  }

  .service-explainer-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .service-explainer-flow li {
    min-height: 0;
    padding: 20px;
  }

  .service-explainer-flow h3 {
    margin-top: 12px;
    font-size: 25px;
  }

  .service-explainer-flow p {
    margin-top: 9px;
    font-size: 11px;
  }

  .service-explainer-result {
    padding: 22px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-explainer-result strong {
    font-size: 24px;
  }
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.service-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 239, 232, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.service-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
  font-size: 13px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.service-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.service-brand b {
  font-weight: 760;
}

.service-context {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-context::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--lime);
  border: 5px solid rgba(221, 247, 95, 0.25);
  border-radius: 50%;
  box-sizing: content-box;
}

.header-back {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-back span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-back:hover span {
  color: var(--ink);
  background: var(--lime);
  transform: translateX(-3px);
}

.service-switcher {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  color: rgba(255, 255, 255, 0.6);
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-switcher a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 70px;
  place-items: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.service-switcher a:last-child {
  border-right: 0;
}

.service-switcher a span {
  display: none;
}

.service-switcher a::after {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 3px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.service-switcher a:hover,
.service-switcher a[aria-current="page"] {
  color: var(--white);
  background: rgba(221, 247, 95, 0.08);
}

.service-switcher a[aria-current="page"]::after {
  transform: scaleX(1);
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  min-height: min(800px, calc(100svh - 70px));
  overflow: hidden;
  background: var(--paper-warm);
}

.service-hero::before {
  position: absolute;
  z-index: 0;
  top: 4%;
  left: -18%;
  width: min(56vw, 820px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(54px, 7vw, 110px) var(--page-x) clamp(44px, 6vw, 86px);
}

.service-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-label span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.service-hero h1 {
  max-width: 900px;
  margin-top: clamp(46px, 7vw, 106px);
  font-size: clamp(60px, 7.5vw, 124px);
  line-height: 0.88;
}

.service-hero h1 em {
  display: block;
  color: var(--green);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(270px, 0.8fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-top: clamp(52px, 8vw, 112px);
}

.service-tagline {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.service-lede {
  max-width: 620px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.38;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button span {
  margin-left: 24px;
  font-size: 18px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.button-light:hover {
  background: rgba(17, 19, 15, 0.06);
  transform: translateY(-2px);
}

.service-visual {
  position: relative;
  z-index: 1;
  min-height: 620px;
  overflow: hidden;
  background: var(--green-dark);
}

.service-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(11, 27, 21, 0.08), rgba(11, 27, 21, 0.68)),
    radial-gradient(circle at 70% 30%, transparent 0, rgba(11, 27, 21, 0.32) 70%);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.visual-caption {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-caption i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(221, 247, 95, 0.14);
}

.system-card {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 62px);
  bottom: clamp(22px, 4vw, 62px);
  left: clamp(20px, 4vw, 62px);
  padding: clamp(24px, 3vw, 38px);
  color: var(--white);
  background: rgba(11, 27, 21, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.system-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-card-head span:last-child {
  color: var(--lime);
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.system-flow li {
  position: relative;
  min-width: 0;
}

.system-flow li:not(:last-child)::after {
  position: absolute;
  top: 15px;
  right: -8px;
  content: "→";
  color: var(--lime);
  font-size: 12px;
}

.system-flow span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

.system-flow strong {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.section-shell {
  padding: clamp(90px, 11vw, 170px) var(--page-x);
}

.service-hero + .section-shell {
  padding-top: clamp(64px, 7vw, 108px);
  background: var(--paper-warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 110px);
}

.section-heading p:first-child,
.mini-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(48px, 6.5vw, 108px);
  line-height: 0.92;
}

.section-heading h2 em {
  color: var(--green);
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.change-card {
  min-height: 350px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.change-card:last-child {
  border-right: 0;
}

.change-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
}

.change-card h3 {
  max-width: 330px;
  margin-top: 64px;
  font-size: clamp(29px, 2.8vw, 48px);
  line-height: 1;
}

.change-card p {
  max-width: 390px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.architecture {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.architecture::before,
.architecture::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(221, 247, 95, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.architecture::before {
  top: -35%;
  right: -10%;
  width: 65vw;
  aspect-ratio: 1;
}

.architecture::after {
  top: -9%;
  right: 3%;
  width: 39vw;
  aspect-ratio: 1;
}

.architecture-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 40px;
  padding: clamp(70px, 9vw, 135px) var(--page-x);
}

.architecture-head .mini-label {
  color: rgba(255, 255, 255, 0.54);
}

.architecture-head h2 {
  max-width: 960px;
  font-size: clamp(50px, 7vw, 114px);
  line-height: 0.9;
}

.architecture-head h2 em {
  color: var(--lime);
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.process-grid li {
  min-height: 300px;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line-light);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.process-grid h3 {
  margin-top: 80px;
  font-size: clamp(24px, 2.4vw, 39px);
  line-height: 1;
}

.process-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 var(--page-x) var(--page-x);
  color: var(--ink);
  background: var(--lime);
  border-radius: 24px;
}

.stat {
  min-height: 190px;
  padding: clamp(26px, 3.5vw, 48px);
  border-right: 1px solid rgba(17, 19, 15, 0.2);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(50px, 5vw, 84px);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat span {
  display: block;
  max-width: 220px;
  margin-top: 18px;
  font-size: 13px;
}

.capabilities {
  background: var(--paper-warm);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-card {
  min-height: 300px;
  padding: clamp(30px, 4.5vw, 64px);
  background: var(--paper-warm);
  transition: background 220ms ease;
}

.capability-card:hover {
  background: var(--white);
}

.capability-card span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.capability-card h3 {
  max-width: 520px;
  margin-top: 68px;
  font-size: clamp(34px, 4vw, 61px);
  line-height: 0.96;
}

.capability-card p {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.technical-details {
  background: var(--paper);
}

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

.technical-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease;
}

.technical-card:hover {
  color: var(--lime);
  background: var(--ink);
}

.technical-card span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.technical-card h3 {
  max-width: 560px;
  margin-top: 54px;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 0.96;
}

.technical-card p {
  max-width: 590px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  transition: color 220ms ease;
}

.technical-card:hover span,
.technical-card:hover p {
  color: rgba(221, 247, 95, 0.72);
}

.service-cta {
  position: relative;
  display: grid;
  min-height: min(740px, 86svh);
  place-items: center;
  padding: clamp(90px, 12vw, 170px) var(--page-x);
  overflow: hidden;
  text-align: center;
  background: var(--lime);
}

.service-cta::before,
.service-cta::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 50%;
}

.service-cta::before {
  width: min(82vw, 1050px);
  aspect-ratio: 1;
}

.service-cta::after {
  width: min(60vw, 780px);
  aspect-ratio: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.cta-inner .mini-label {
  color: rgba(17, 19, 15, 0.58);
}

.cta-inner h2 {
  margin-top: 34px;
  font-size: clamp(62px, 9vw, 146px);
  line-height: 0.86;
}

.cta-inner p {
  max-width: 640px;
  margin: 30px auto 0;
  font-size: clamp(17px, 1.6vw, 23px);
}

.cta-inner .button {
  margin-top: 38px;
  border: 0;
}

.next-service {
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 230px;
  padding: 45px var(--page-x);
  color: var(--white);
  background: var(--green-dark);
  border-top: 1px solid var(--line-light);
}

.next-service small {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.next-service h2 {
  color: var(--lime);
  font-size: clamp(38px, 5vw, 78px);
  line-height: 0.92;
}

.next-service > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 25px;
  transition: transform 180ms ease;
}

.next-service:hover > span {
  transform: translateX(6px);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 25px var(--page-x);
  color: rgba(255, 255, 255, 0.42);
  background: var(--green-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-footer nav {
  display: flex;
  gap: 26px;
}

.service-footer a:hover {
  color: var(--lime);
}

.service-fallback {
  min-height: 100svh;
  padding: 15vh var(--page-x);
}

.service-fallback p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-fallback h1 {
  max-width: 1000px;
  margin-top: 35px;
  font-size: clamp(60px, 10vw, 150px);
  line-height: 0.86;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .service-header {
    grid-template-columns: 1fr auto;
  }

  .service-context {
    display: none;
  }

  .service-switcher {
    grid-template-columns: repeat(8, minmax(130px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .service-switcher::-webkit-scrollbar {
    display: none;
  }

  .service-switcher a {
    scroll-snap-align: start;
  }

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

  .service-hero-copy {
    min-height: auto;
  }

  .service-visual {
    min-height: 720px;
  }

  .architecture-head {
    grid-template-columns: 1fr;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .service-hero-note {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    background-size: 48px 48px;
  }

  .service-header {
    min-height: 72px;
  }

  .service-brand span {
    max-width: 94px;
    font-size: 10px;
    line-height: 1.1;
  }

  .header-back {
    font-size: 0;
  }

  .header-back span {
    font-size: 16px;
  }

  .service-switcher {
    grid-template-columns: repeat(8, 108px);
  }

  .service-switcher a {
    min-height: 58px;
    padding: 8px;
    font-size: 7px;
  }

  .service-hero h1 {
    margin-top: 52px;
    font-size: clamp(54px, 18vw, 84px);
  }

  .service-intro {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .service-visual {
    min-height: 620px;
  }

  .visual-caption {
    top: 20px;
    right: 20px;
    left: 20px;
  }

  .system-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .system-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .system-flow li:nth-child(2)::after {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: clamp(47px, 14vw, 74px);
  }

  .change-grid,
  .capability-grid,
  .technical-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .change-card {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .change-card:last-child {
    border-bottom: 0;
  }

  .change-card h3,
  .capability-card h3 {
    margin-top: 44px;
  }

  .architecture-head h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

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

  .process-grid li,
  .process-grid li:nth-child(2) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 50px;
  }

  .stats-strip {
    margin: 0 14px 14px;
  }

  .stat {
    min-height: 148px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 15, 0.2);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .capability-card {
    min-height: 270px;
  }

  .technical-card {
    min-height: 235px;
  }

  .technical-card h3 {
    margin-top: 38px;
  }

  .service-cta {
    min-height: 660px;
  }

  .service-cta::before {
    width: 140vw;
  }

  .service-cta::after {
    width: 100vw;
  }

  .cta-inner h2 {
    font-size: clamp(60px, 18vw, 88px);
  }

  .next-service {
    grid-template-columns: 1fr auto;
    min-height: 210px;
  }

  .next-service small {
    grid-column: 1 / -1;
  }

  .service-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .service-footer nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

/* Portadas de servicio · mismo lenguaje visual que el dossier */

.service-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 12, 9, 0.58), transparent);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-context,
.header-back {
  color: rgba(255, 255, 255, 0.76);
}

.service-hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  padding-bottom: 70px;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: #0b100d;
  border-radius: 0;
  isolation: isolate;
}

.service-hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 12, 9, 0.9) 0%, rgba(7, 12, 9, 0.74) 42%, rgba(7, 12, 9, 0.18) 72%, rgba(7, 12, 9, 0.05) 100%),
    linear-gradient(180deg, rgba(7, 12, 9, 0.2), transparent 34%),
    linear-gradient(0deg, rgba(7, 12, 9, 0.68), transparent 40%);
  border: 0;
  border-radius: 0;
}

.service-visual {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(28px, 4vw, 72px);
  bottom: auto;
  left: auto;
  width: min(42vw, 760px);
  height: min(72vh, 760px);
  min-height: 0;
  overflow: hidden;
  background: var(--green-dark);
  border: 1px solid rgba(221, 247, 95, 0.16);
  border-radius: clamp(22px, 2.5vw, 36px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(calc(-50% - 18px));
}

.service-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 12, 9, 0.3), transparent 48%);
}

.service-visual img {
  width: 100%;
  height: 100%;
  opacity: 0.56;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.72) contrast(1.02);
  transform: none;
}

[data-service="whatsapp"] .service-visual img,
[data-service="apps"] .service-visual img {
  object-position: 68% center;
}

[data-service="voice"] .service-visual img,
[data-service="web"] .service-visual img,
[data-service="email"] .service-visual img {
  object-position: 58% center;
}

.service-hero-copy {
  position: relative;
  z-index: 4;
  width: min(62%, 950px);
  height: calc(100svh - 70px);
  min-height: 0;
  padding: clamp(104px, 13vh, 146px) clamp(38px, 5vw, 82px) clamp(82px, 11vh, 112px);
  display: grid;
  place-items: center;
  text-align: center;
}

.service-hero-main {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.service-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}

.service-label span {
  width: 9px;
  height: 9px;
  display: block;
  flex: 0 0 9px;
  padding: 0;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(221, 247, 95, 0.14);
}

.service-hero h1 {
  max-width: 920px;
  margin-top: clamp(30px, 5vh, 54px);
  color: var(--white);
  font-size: clamp(64px, 7.2vw, 122px);
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-wrap: balance;
}

.service-hero h1 em {
  display: block;
  color: var(--lime);
  font-size: 1.02em;
  line-height: 0.9;
}

.service-lede {
  max-width: 720px;
  margin-top: clamp(30px, 4.6vh, 48px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.5;
}

.service-actions {
  margin-top: clamp(25px, 4vh, 38px);
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.service-actions .button-dark {
  min-height: 56px;
  padding-right: 18px;
  padding-left: 28px;
  color: var(--white);
  background: rgba(7, 12, 9, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-actions .button-ghost {
  min-height: auto;
  padding: 7px 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--lime);
  border-radius: 0;
}

.service-actions .button-ghost:hover {
  color: var(--lime);
}

.service-hero-note {
  position: static;
  margin-top: clamp(20px, 3vh, 28px);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.service-index {
  position: absolute;
  z-index: 5;
  bottom: 82px;
  left: var(--page-x);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

.visual-caption {
  position: absolute;
  z-index: 4;
  top: auto;
  right: var(--page-x);
  bottom: 90px;
  left: auto;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  line-height: 1.55;
  text-align: left;
}

.service-switcher {
  position: absolute;
  z-index: 8;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 70px;
  background: rgba(7, 14, 11, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-switcher a {
  min-height: 70px;
}

.service-switcher a span {
  display: inline;
  margin-right: 8px;
  color: var(--lime);
  font-size: 7px;
}

.service-impact {
  padding: clamp(72px, 7.5vw, 116px) var(--page-x);
  background: var(--paper-warm);
}

/* Bloque editorial exclusivo de Servicios → Webs */

.webs-market {
  position: relative;
  padding: clamp(92px, 10vw, 150px) var(--page-x);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(221, 247, 95, 0.08), transparent 34rem),
    #0c0f0d;
}

.webs-market-head {
  max-width: 1320px;
}

.webs-market-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.webs-market-label span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(221, 247, 95, 0.08);
}

.webs-market-head h2 {
  margin-top: clamp(48px, 6vw, 78px);
  font-size: clamp(62px, 8vw, 138px);
  line-height: 0.87;
}

.webs-market-head h2 mark {
  max-width: 100%;
  padding: 0.03em 0.055em 0.055em;
  display: inline-block;
  color: var(--ink);
  background: var(--lime);
  line-height: 0.92;
  white-space: nowrap;
}

.webs-market-head h2 > span {
  color: var(--white);
}

.webs-market-head > p:last-child {
  max-width: 700px;
  margin: clamp(38px, 5vw, 62px) 0 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.3vw, 21px);
}

.webs-market-grid {
  margin-top: clamp(54px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.webs-card {
  position: relative;
  min-height: 270px;
  padding: 24px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.webs-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  content: "";
  background: var(--lime);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 260ms ease;
}

.webs-card:hover {
  border-color: rgba(221, 247, 95, 0.46);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.webs-card:hover::before {
  transform: scaleX(1);
}

.webs-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.webs-card header span {
  padding: 6px 8px;
  color: var(--lime);
  background: rgba(221, 247, 95, 0.08);
  border: 1px solid rgba(221, 247, 95, 0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.webs-card svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  opacity: 0.72;
}

.webs-card h3 {
  margin-top: auto;
  padding-top: 34px;
  font-size: clamp(29px, 2.25vw, 40px);
  line-height: 0.95;
}

.webs-card h3 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.webs-card > p {
  max-width: 300px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.webs-card-conversion {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.webs-card-connected {
  color: var(--ink);
  background: #dce9e1;
  border-color: #dce9e1;
}

.webs-card-conversion::before,
.webs-card-connected::before {
  background: var(--green);
}

.webs-card-conversion header span,
.webs-card-connected header span {
  color: var(--green);
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(17, 61, 49, 0.14);
}

.webs-card-conversion h3 em,
.webs-card-connected h3 em {
  color: var(--green);
}

.webs-card-conversion > p,
.webs-card-connected > p {
  color: rgba(17, 19, 15, 0.66);
}

.webs-card-scale {
  background: linear-gradient(145deg, #173f32, #102a22);
}

.section-heading {
  margin-bottom: clamp(44px, 5.5vw, 72px);
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(48px, 5.4vw, 88px);
}

.change-card {
  min-height: 290px;
  padding: clamp(26px, 3.2vw, 46px);
}

.change-card h3 {
  margin-top: 42px;
  font-size: clamp(28px, 2.5vw, 43px);
}

.change-card p {
  font-size: 14px;
  line-height: 1.5;
}

.architecture {
  border-radius: 0;
}

.architecture-head {
  padding-top: clamp(70px, 7vw, 105px);
  padding-bottom: clamp(58px, 6vw, 90px);
}

.architecture-head h2 {
  font-size: clamp(52px, 6vw, 98px);
}

.process-grid li {
  min-height: 250px;
  padding: clamp(26px, 3vw, 42px);
}

.process-grid h3 {
  margin-top: 48px;
}

.stats-strip {
  border-radius: 0;
}

.stat {
  min-height: 150px;
}

.service-cta {
  min-height: min(650px, 78svh);
  padding-top: clamp(74px, 8vw, 120px);
  padding-bottom: clamp(74px, 8vw, 120px);
}

.cta-inner h2 {
  font-size: clamp(58px, 7.5vw, 118px);
}

.next-service {
  min-height: 180px;
}

@media (max-width: 980px) {
  .service-visual {
    right: -4vw;
    width: min(56vw, 620px);
    height: min(64vh, 620px);
  }

  .service-hero-copy {
    width: 72%;
  }

  .service-hero h1 {
    font-size: clamp(60px, 10vw, 98px);
  }
}

@media (max-width: 720px) {
  .service-header {
    min-height: 68px;
  }

  .service-hero {
    height: auto;
    min-height: 100svh;
    padding-bottom: 58px;
  }

  .service-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 12, 9, 0.84), rgba(7, 12, 9, 0.32)),
      linear-gradient(0deg, rgba(7, 12, 9, 0.76), rgba(7, 12, 9, 0.08) 68%);
  }

  .service-visual {
    top: 88px;
    right: 16px;
    width: calc(100% - 32px);
    height: 42svh;
    border-radius: 22px;
    transform: none;
  }

  .service-visual img {
    opacity: 0.46;
  }

  .service-visual img,
  [data-service="whatsapp"] .service-visual img,
  [data-service="voice"] .service-visual img,
  [data-service="web"] .service-visual img,
  [data-service="apps"] .service-visual img {
    object-position: 62% center;
  }

  .service-hero-copy {
    width: 100%;
    height: auto;
    min-height: calc(100svh - 58px);
    padding: 112px 20px 112px;
  }

  .service-label {
    font-size: 8px;
  }

  .service-hero h1 {
    margin-top: 34px;
    font-size: clamp(50px, 15.5vw, 72px);
    line-height: 0.86;
  }

  .service-lede {
    max-width: 34ch;
    margin-top: 30px;
    font-size: 15px;
  }

  .service-actions {
    margin-top: 28px;
    flex-direction: column;
    gap: 17px;
  }

  .service-actions .button-dark {
    min-height: 52px;
  }

  .service-hero-note,
  .service-index,
  .visual-caption {
    display: none;
  }

  .service-switcher,
  .service-switcher a {
    min-height: 58px;
  }

  .service-impact {
    padding: 68px 20px 72px;
  }

  .change-card {
    min-height: 0;
    padding: 30px 0;
  }

  .change-card > span {
    width: 38px;
    height: 38px;
  }

  .change-card h3 {
    margin-top: 26px;
    font-size: 34px;
  }

  .architecture-head {
    padding: 70px 20px 54px;
  }

  .process-grid li,
  .process-grid li:nth-child(2) {
    min-height: 0;
    padding: 30px 20px;
  }

  .process-grid h3 {
    margin-top: 24px;
  }

  .stats-strip {
    margin: 0;
  }

  .stat {
    min-height: 116px;
    padding: 24px 20px;
  }

  .service-cta {
    min-height: 580px;
  }

  .next-service {
    min-height: 170px;
    padding: 34px 20px;
  }
}

@media (max-width: 1000px) {
  .webs-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .webs-market {
    padding: 76px 20px 82px;
  }

  .webs-market-head h2 {
    margin-top: 42px;
    font-size: clamp(48px, 14vw, 68px);
  }

  .webs-market-head h2 mark {
    white-space: normal;
  }

  .webs-market-head > p:last-child {
    margin-left: 0;
    font-size: 15px;
  }

  .webs-market-grid {
    grid-template-columns: 1fr;
  }

  .webs-card {
    min-height: 235px;
  }
}

/* Servicios compactos · máxima claridad con menos scroll */

.service-impact {
  padding: clamp(52px, 5.2vw, 80px) var(--page-x) clamp(58px, 6vw, 88px);
}

.service-impact .section-heading {
  margin-bottom: clamp(30px, 3.4vw, 48px);
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
}

.service-impact .section-heading h2 {
  font-size: clamp(44px, 4.7vw, 76px);
}

.service-impact .change-card {
  min-height: 215px;
  padding: clamp(24px, 2.6vw, 38px);
}

.service-impact .change-card > span {
  width: 38px;
  height: 38px;
}

.service-impact .change-card h3 {
  margin-top: 24px;
  font-size: clamp(27px, 2.2vw, 37px);
}

.service-impact .change-card p {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.architecture-head {
  padding: clamp(52px, 5.5vw, 82px) var(--page-x) clamp(42px, 4.5vw, 66px);
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
}

.architecture-head h2 {
  font-size: clamp(46px, 5.1vw, 82px);
}

.process-grid li {
  min-height: 190px;
  padding: clamp(22px, 2.4vw, 34px);
}

.process-grid h3 {
  margin-top: 26px;
  font-size: clamp(25px, 2vw, 34px);
}

.process-grid p {
  margin-top: 11px;
  font-size: 12px;
  line-height: 1.38;
}

.stats-strip {
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.stat {
  min-height: 112px;
  padding: clamp(18px, 2.2vw, 30px);
}

.stat strong {
  font-size: clamp(38px, 4vw, 62px);
}

.stat span {
  margin-top: 10px;
  font-size: 11px;
}

.webs-market {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 108px);
}

.webs-market-head h2 {
  margin-top: clamp(34px, 4vw, 54px);
  font-size: clamp(56px, 6.6vw, 108px);
}

.webs-market-head > p:last-child {
  margin-top: clamp(28px, 3.5vw, 44px);
}

.webs-market-grid {
  margin-top: clamp(38px, 4.5vw, 60px);
}

.webs-card {
  min-height: 220px;
  padding: 20px;
}

.webs-card h3 {
  padding-top: 24px;
  font-size: clamp(27px, 2vw, 35px);
}

.webs-card > p {
  margin-top: 12px;
  font-size: 10px;
}

.service-cta {
  min-height: min(500px, 62svh);
  padding: clamp(62px, 7vw, 96px) var(--page-x);
}

.cta-inner h2 {
  margin-top: 24px;
  font-size: clamp(54px, 6.4vw, 102px);
}

.cta-inner p {
  margin-top: 20px;
}

.cta-inner .button {
  margin-top: 28px;
}

.next-service {
  min-height: 140px;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 720px) {
  .service-impact {
    padding: 52px 20px 56px;
  }

  .service-impact .section-heading {
    margin-bottom: 26px;
    grid-template-columns: 1fr;
  }

  .service-impact .section-heading h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .service-impact .change-card {
    min-height: 0;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
  }

  .service-impact .change-card > span {
    grid-row: 1 / 3;
  }

  .service-impact .change-card h3 {
    margin-top: 0;
    font-size: 27px;
  }

  .service-impact .change-card p {
    margin-top: 8px;
    grid-column: 2;
    font-size: 11px;
  }

  .architecture-head {
    padding: 52px 20px 40px;
    grid-template-columns: 1fr;
  }

  .architecture-head h2 {
    font-size: clamp(43px, 12.5vw, 56px);
  }

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

  .process-grid li,
  .process-grid li:nth-child(2) {
    min-height: 168px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--line-light);
  }

  .process-grid li:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .process-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 20px;
    font-size: 25px;
  }

  .process-grid p {
    margin-top: 8px;
    font-size: 10px;
  }

  .architecture .stats-strip {
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .architecture .stat {
    min-height: 92px;
    padding: 16px 10px;
    border-right: 1px solid rgba(17, 19, 15, 0.2);
    border-bottom: 0;
  }

  .architecture .stat:last-child {
    border-right: 0;
  }

  .architecture .stat strong {
    font-size: 30px;
  }

  .architecture .stat span {
    margin-top: 7px;
    font-size: 8px;
  }

  .webs-market {
    padding: 58px 20px 64px;
  }

  .webs-market-head h2 {
    margin-top: 34px;
    font-size: clamp(45px, 13vw, 58px);
  }

  .webs-market-head > p:last-child {
    margin-top: 26px;
    font-size: 14px;
  }

  .webs-market-grid {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .webs-card {
    min-height: 195px;
    padding: 15px;
  }

  .webs-card svg {
    width: 28px;
    height: 28px;
  }

  .webs-card header span {
    font-size: 5px;
  }

  .webs-card h3 {
    padding-top: 20px;
    font-size: 24px;
  }

  .webs-card > p {
    margin-top: 9px;
    font-size: 9px;
  }

  .service-cta {
    min-height: 420px;
    padding: 58px 20px;
  }

  .cta-inner h2 {
    margin-top: 22px;
    font-size: clamp(50px, 15vw, 68px);
  }

  .cta-inner p {
    font-size: 15px;
  }

  .next-service {
    min-height: 130px;
    padding: 26px 20px;
  }
}

/* Conexión APIs · ecosistema flotante */
.api-visual {
  background:
    radial-gradient(circle at 50% 48%, rgba(221, 247, 95, 0.16), transparent 30%),
    linear-gradient(145deg, #101a15, #07100c 72%);
}

.api-visual::after {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 23%, rgba(7, 16, 12, 0.2) 58%, rgba(7, 16, 12, 0.66) 100%),
    linear-gradient(0deg, rgba(7, 12, 9, 0.32), transparent 44%);
}

.api-visual-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
}

.api-visual-stage::before,
.api-visual-stage::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  aspect-ratio: 1;
  border: 1px solid rgba(221, 247, 95, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.api-visual-stage::before {
  width: 66%;
}

.api-visual-stage::after {
  width: 92%;
  border-color: rgba(255, 255, 255, 0.08);
}

.api-visual img {
  width: auto;
  height: auto;
  opacity: 1;
  object-fit: contain;
  filter: none;
}

.api-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(142px, 14vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: rgba(10, 20, 15, 0.94);
  border: 1px solid rgba(221, 247, 95, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(221, 247, 95, 0.06),
    0 25px 65px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.api-core img {
  width: 28px;
  height: 28px;
  margin: 0 auto 7px;
  border-radius: 50%;
}

.api-core small,
.api-core span {
  font-family: var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.api-core small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 6px;
}

.api-core strong {
  margin-top: 2px;
  color: var(--lime);
  font-size: clamp(37px, 4vw, 54px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.api-core span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 5px;
}

.api-node {
  --float-delay: 0s;
  position: absolute;
  z-index: 3;
  min-height: 38px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(18, 32, 24, 0.84);
  border: 1px solid rgba(221, 247, 95, 0.22);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  animation: api-node-float 4.8s var(--float-delay) ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.api-node img {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.api-node span {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.api-node--1 { top: 7%; left: 4%; --float-delay: -0.4s; }
.api-node--2 { top: 4%; left: 35%; --float-delay: -2.2s; }
.api-node--3 { top: 9%; right: 4%; --float-delay: -1.1s; }
.api-node--4 { top: 27%; left: 2%; --float-delay: -3.4s; }
.api-node--5 { top: 29%; right: 2%; --float-delay: -0.8s; }
.api-node--6 { top: 50%; left: 2%; --float-delay: -1.8s; }
.api-node--7 { top: 51%; right: 2%; --float-delay: -2.9s; }
.api-node--8 { bottom: 13%; left: 4%; --float-delay: -1.3s; }
.api-node--9 { bottom: 4%; left: 35%; --float-delay: -3.1s; }
.api-node--10 { right: 4%; bottom: 13%; --float-delay: -0.2s; }
.api-node--11 { top: 19%; left: 20%; --float-delay: -2.5s; }
.api-node--12 { top: 20%; right: 20%; --float-delay: -3.7s; }
.api-node--13 { bottom: 24%; left: 19%; --float-delay: -0.9s; }
.api-node--14 { right: 19%; bottom: 23%; --float-delay: -2s; }

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

@media (max-width: 720px) {
  .api-core {
    width: clamp(126px, 36vw, 154px);
  }

  .api-node {
    min-width: 38px;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
  }

  .api-node span {
    display: none;
  }

  .api-node--2,
  .api-node--9 {
    left: 42%;
  }

  .api-node--11,
  .api-node--13 {
    left: 24%;
  }

  .api-node--12,
  .api-node--14 {
    right: 24%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .api-node {
    animation: none;
  }
}

/* Conexión APIs · tira continua de aplicaciones */
.api-marquee-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
}

.api-marquee-copy {
  position: absolute;
  top: 10%;
  right: 8%;
  left: 8%;
  text-align: center;
}

.api-marquee-copy small,
.api-marquee-foot {
  font-family: var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.api-marquee-copy small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 7px;
}

.api-marquee-copy strong {
  margin-top: 12px;
  display: block;
  color: var(--white);
  font-size: clamp(31px, 3.4vw, 50px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.api-marquee-copy em {
  color: var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.api-marquee-window {
  position: absolute;
  top: 37%;
  right: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
  background: var(--paper-warm);
  border-top: 1px solid rgba(17, 19, 15, 0.14);
  border-bottom: 1px solid rgba(17, 19, 15, 0.14);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.api-marquee-track {
  width: max-content;
  display: flex;
  gap: 0;
  animation: api-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.api-marquee-group {
  display: flex;
  gap: 0;
}

.api-marquee-node {
  min-width: 148px;
  min-height: 76px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  background: transparent;
  border-right: 1px solid rgba(17, 19, 15, 0.12);
}

.api-marquee-node img {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
}

.api-marquee-node span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.api-marquee-foot {
  position: absolute;
  right: 8%;
  bottom: 17%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 6px;
  text-align: center;
}

.api-marquee-foot span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.1);
}

@keyframes api-marquee-scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .api-marquee-copy {
    top: 12%;
  }

  .api-marquee-copy strong {
    font-size: clamp(28px, 9vw, 40px);
  }

  .api-marquee-window {
    top: 52%;
  }

  .api-marquee-node {
    min-width: 118px;
    min-height: 62px;
    padding: 10px 18px;
  }

  .api-marquee-node img {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .api-marquee-node span {
    display: inline;
    font-size: 9px;
  }

  .api-marquee-foot {
    bottom: 9%;
    font-size: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .api-marquee-track {
    animation-play-state: paused;
  }
}

/* Agentes de voz · morph visual, alcance, operación e infraestructura */
[data-service="voice"] .service-hero h1 {
  max-width: 980px;
  font-size: clamp(56px, 6.15vw, 104px);
}

.voice-morph {
  position: relative;
  height: 172svh;
  color: var(--white);
  background: var(--green-dark);
}

.voice-morph::after {
  position: absolute;
  z-index: 250;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(80px, 11vw, 150px);
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper-warm));
  pointer-events: none;
}

.voice-morph + .service-explainer {
  border-top: 0;
}

.voice-morph-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(221, 247, 95, 0.1), transparent 28rem),
    linear-gradient(145deg, #0a1611, #070d0a 72%);
  isolation: isolate;
}

.voice-morph-stage::before,
.voice-morph-stage::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  content: "";
  aspect-ratio: 1;
  border: 1px solid rgba(221, 247, 95, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.voice-morph-stage::before {
  width: min(73vh, 64vw);
}

.voice-morph-stage::after {
  width: min(92vh, 79vw);
  border-style: dashed;
  opacity: 0.5;
}

.voice-morph-topline {
  position: absolute;
  z-index: 200;
  top: clamp(24px, 4vw, 56px);
  right: var(--page-x);
  left: var(--page-x);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.voice-morph-topline span:last-child {
  min-width: 30px;
  color: var(--lime);
  text-align: right;
}

.voice-morph-copy {
  position: absolute;
  z-index: 80;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
  will-change: opacity, transform;
}

.voice-morph-copy--intro {
  top: 50%;
  transform: translateY(-50%);
}

.voice-morph-copy--result {
  top: 14%;
  opacity: 0;
}

.voice-morph-copy > p {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.voice-morph-copy h2 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.86;
}

.voice-morph-copy h2 em {
  display: block;
  color: var(--lime);
}

.voice-morph-copy > span {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.voice-morph-cards {
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
}

.voice-morph-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 102px;
  opacity: 0;
  filter: blur(8px);
  transform-style: preserve-3d;
  perspective: 900px;
  pointer-events: auto;
  will-change: transform;
  transition: opacity 650ms ease, filter 650ms ease;
}

.voice-morph.is-ready .voice-morph-card {
  opacity: 1;
  filter: blur(0);
}

.voice-morph-card:nth-child(2n) { transition-delay: 45ms; }
.voice-morph-card:nth-child(3n) { transition-delay: 90ms; }
.voice-morph-card:nth-child(5n) { transition-delay: 130ms; }

.voice-morph-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.voice-morph-card:hover .voice-morph-card-inner,
.voice-morph-card:focus .voice-morph-card-inner {
  transform: rotateY(180deg);
}

.voice-morph-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
  border-radius: 12px;
}

.voice-morph-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 247, 95, 0.28);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.voice-morph-card-front {
  padding: 9px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #132a20;
}

.voice-morph-card-front::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 20, 15, 0.1), rgba(9, 20, 15, 0.92)),
    rgba(221, 247, 95, 0.08);
}

.voice-morph-card-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) sepia(0.15);
}

.voice-morph-card-front span,
.voice-morph-card-front strong {
  position: relative;
  z-index: 2;
}

.voice-morph-card-front span,
.voice-morph-card-back small {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.12em;
}

.voice-morph-card-front strong {
  color: var(--white);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

.voice-morph-card-back {
  padding: 9px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  transform: rotateY(180deg);
}

.voice-morph-card-back small {
  color: rgba(17, 19, 15, 0.58);
}

.voice-morph-card-back strong {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1;
}

.voice-morph-card-back p {
  margin-top: 7px;
  color: rgba(17, 19, 15, 0.68);
  font-size: 6px;
  line-height: 1.35;
}

.voice-morph-hint {
  position: absolute;
  z-index: 180;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voice-morph-hint span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(221, 247, 95, 0.1);
}

.voice-scope,
.voice-operation,
.voice-infrastructure {
  position: relative;
  overflow: hidden;
}

.voice-scope {
  padding: clamp(68px, 7vw, 104px) var(--page-x);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(221, 247, 95, 0.11), transparent 30rem),
    var(--green-dark);
}

.voice-scope-head {
  display: grid;
  grid-template-columns: minmax(145px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.voice-scope .mini-label,
.voice-operation .mini-label,
.voice-infrastructure .mini-label {
  padding-top: 9px;
  color: rgba(255, 255, 255, 0.48);
}

.voice-scope-head > div {
  max-width: 1100px;
}

.voice-eyebrow {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.voice-scope h2,
.voice-operation h2,
.voice-infrastructure h2 {
  margin-top: 20px;
  font-size: clamp(52px, 6vw, 98px);
  line-height: 0.9;
}

.voice-scope h2 em,
.voice-infrastructure h2 em {
  color: var(--lime);
}

.voice-scope-head > div > p:last-child,
.voice-infrastructure-copy > p:nth-of-type(2) {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.5;
}

.voice-metrics {
  margin-top: clamp(44px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(221, 247, 95, 0.22);
  border-radius: 20px;
}

.voice-metrics article {
  min-height: 142px;
  padding: clamp(22px, 2.5vw, 34px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-right: 1px solid rgba(221, 247, 95, 0.18);
}

.voice-metrics article:last-child {
  border-right: 0;
}

.voice-metrics strong {
  color: var(--lime);
  font-size: clamp(37px, 4vw, 64px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.voice-metrics article:nth-child(5) strong {
  font-size: clamp(26px, 2.7vw, 44px);
  letter-spacing: -0.045em;
}

.voice-metrics span {
  max-width: 180px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.voice-metrics-note {
  margin: 10px 4px 0;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.voice-use-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.voice-use-card {
  min-height: 184px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.voice-use-card:hover {
  background: rgba(221, 247, 95, 0.07);
  border-color: rgba(221, 247, 95, 0.35);
  transform: translateY(-3px);
}

.voice-use-card > span,
.voice-operation-flow > li > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.voice-use-card h3 {
  margin-top: 25px;
  font-size: clamp(22px, 1.7vw, 30px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.voice-use-card p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.45;
}

.voice-operation {
  padding: clamp(68px, 7vw, 104px) var(--page-x);
  color: var(--ink);
  background: var(--white);
}

.voice-operation-head {
  display: grid;
  grid-template-columns: minmax(145px, 0.28fr) minmax(320px, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}

.voice-operation .mini-label {
  align-self: start;
  color: var(--green);
}

.voice-operation h2 {
  margin-top: 0;
}

.voice-operation h2 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.voice-operation-head > p:last-child {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.voice-operation-flow {
  margin-top: clamp(42px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-operation-flow li {
  min-height: 246px;
  padding: clamp(24px, 2.6vw, 38px);
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  border-right: 1px solid var(--line);
}

.voice-operation-flow li:last-child {
  border-right: 0;
}

.voice-operation-flow > li > span {
  color: var(--green);
}

.voice-operation-flow small {
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.voice-operation-flow h3 {
  margin-top: 30px;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 0.98;
}

.voice-operation-flow p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.voice-operation-example {
  margin-top: 12px;
  padding: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(220px, 0.45fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 18px;
}

.voice-operation-example span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.voice-operation-example strong {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
}

.voice-operation-example p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.48;
}

.voice-sales-examples {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.voice-sales-examples article {
  min-height: 190px;
  padding: clamp(22px, 2.5vw, 34px);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.voice-sales-examples span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.voice-sales-examples h3 {
  margin-top: 28px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 0.98;
}

.voice-sales-examples p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.voice-infrastructure {
  padding: clamp(72px, 8vw, 120px) var(--page-x);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(221, 247, 95, 0.1), transparent 32rem),
    var(--green);
}

.voice-infrastructure-copy {
  display: grid;
  grid-template-columns: minmax(145px, 0.28fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 82px);
}

.voice-infrastructure-copy h2,
.voice-infrastructure-copy > p:nth-of-type(2),
.voice-system-tags {
  grid-column: 2;
}

.voice-infrastructure h2 {
  margin-top: 0;
  max-width: 1120px;
}

.voice-system-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.voice-system-tags span {
  padding: 9px 13px;
  color: var(--lime);
  border: 1px solid rgba(221, 247, 95, 0.28);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voice-sector-board {
  margin-top: clamp(48px, 6vw, 82px);
  padding: clamp(26px, 3.4vw, 50px) 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-warm);
  border-radius: 22px;
}

.voice-sector-title {
  padding: 0 clamp(24px, 4vw, 60px) clamp(26px, 3vw, 40px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.voice-sector-title span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.voice-sector-title strong {
  max-width: 620px;
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: right;
}

.voice-sector-grid {
  padding: 0 clamp(20px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.voice-sector-card {
  min-height: 238px;
  padding: clamp(20px, 2.2vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.voice-sector-card header {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.voice-sector-card header > b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
}

.voice-sector-card h3 {
  font-size: clamp(20px, 1.55vw, 27px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.voice-sector-card small {
  margin-top: 7px;
  display: block;
  color: var(--green);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.voice-sector-card > p {
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.voice-sector-card > p span {
  color: var(--ink);
}

.voice-sector-card > p i {
  margin: 0 7px;
  color: rgba(23, 61, 47, 0.42);
  font-style: normal;
}

.voice-proof {
  margin-top: 12px;
  padding: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 94px);
  color: var(--ink);
  background: var(--lime);
  border-radius: 18px;
}

.voice-proof > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.voice-proof strong {
  font-size: clamp(54px, 6vw, 92px);
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.voice-proof span {
  max-width: 170px;
  font-size: 12px;
  line-height: 1.3;
}

.voice-proof p {
  max-width: 680px;
  color: rgba(17, 19, 15, 0.7);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .voice-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .voice-operation-head {
    grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
  }

  .voice-operation-head > p:last-child {
    grid-column: 2;
  }

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

  .voice-operation-flow li:nth-child(2) {
    border-right: 0;
  }

  .voice-operation-flow li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  [data-service="voice"] .service-hero h1 {
    font-size: clamp(45px, 13.2vw, 60px);
  }

  .voice-morph {
    height: 155svh;
  }

  .voice-morph-stage::before {
    width: 79vw;
  }

  .voice-morph-stage::after {
    width: 98vw;
  }

  .voice-morph-topline {
    top: 22px;
    right: 20px;
    left: 20px;
    font-size: 6px;
  }

  .voice-morph-copy {
    right: 16px;
    left: 16px;
  }

  .voice-morph-copy--intro {
    top: 48%;
  }

  .voice-morph-copy--result {
    top: 13%;
  }

  .voice-morph-copy h2 {
    max-width: 360px;
    margin-top: 13px;
    font-size: clamp(44px, 13.2vw, 58px);
  }

  .voice-morph-copy > p {
    font-size: 6px;
  }

  .voice-morph-copy > span {
    max-width: 290px;
    margin-top: 15px;
    font-size: 10px;
  }

  .voice-morph-card {
    width: 48px;
    height: 68px;
  }

  .voice-morph-card-face {
    border-radius: 8px;
  }

  .voice-morph-card-front,
  .voice-morph-card-back {
    padding: 6px;
  }

  .voice-morph-card-front span,
  .voice-morph-card-back small {
    font-size: 4px;
  }

  .voice-morph-card-front strong,
  .voice-morph-card-back strong {
    font-size: 7px;
  }

  .voice-morph-card-back strong {
    margin-top: 4px;
  }

  .voice-morph-card-back p {
    margin-top: 4px;
    font-size: 4px;
  }

  .voice-morph-hint {
    bottom: 16px;
    font-size: 5px;
  }

  .voice-scope,
  .voice-operation,
  .voice-infrastructure {
    padding: 58px 20px 64px;
  }

  .voice-scope-head,
  .voice-operation-head,
  .voice-infrastructure-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-scope .mini-label,
  .voice-operation .mini-label,
  .voice-infrastructure .mini-label {
    padding-top: 0;
  }

  .voice-scope h2,
  .voice-operation h2,
  .voice-infrastructure h2 {
    margin-top: 14px;
    font-size: clamp(44px, 12.5vw, 58px);
  }

  .voice-scope-head > div > p:last-child,
  .voice-infrastructure-copy > p:nth-of-type(2) {
    margin-top: 20px;
    font-size: 14px;
  }

  .voice-metrics {
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-metrics article {
    min-height: 124px;
    padding: 18px;
  }

  .voice-metrics article:nth-child(2) {
    border-right: 0;
  }

  .voice-metrics article:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(221, 247, 95, 0.18);
  }

  .voice-metrics article:nth-child(4) {
    border-right: 0;
  }

  .voice-metrics strong,
  .voice-metrics article:nth-child(5) strong {
    font-size: 31px;
  }

  .voice-metrics span {
    margin-top: 16px;
    font-size: 9px;
  }

  .voice-use-grid {
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 8px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .voice-use-grid::-webkit-scrollbar {
    display: none;
  }

  .voice-use-card {
    width: 76vw;
    min-width: 76vw;
    min-height: 174px;
    scroll-snap-align: start;
  }

  .voice-operation-head > p:last-child,
  .voice-infrastructure-copy h2,
  .voice-infrastructure-copy > p:nth-of-type(2),
  .voice-system-tags {
    grid-column: auto;
  }

  .voice-operation-head > p:last-child {
    font-size: 14px;
  }

  .voice-operation-flow {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-operation-flow li {
    min-height: 214px;
    padding: 18px 14px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-operation-flow h3 {
    margin-top: 15px;
    font-size: 25px;
  }

  .voice-operation-flow p {
    font-size: 9px;
  }

  .voice-operation-example,
  .voice-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .voice-operation-example {
    padding: 22px 20px;
  }

  .voice-operation-example p {
    font-size: 11px;
  }

  .voice-sales-examples {
    grid-template-columns: 1fr;
  }

  .voice-sales-examples article {
    min-height: 0;
    padding: 22px 20px;
  }

  .voice-sales-examples h3 {
    margin-top: 16px;
    font-size: 27px;
  }

  .voice-system-tags {
    margin-top: 22px;
  }

  .voice-sector-board {
    margin-top: 38px;
    border-radius: 18px;
  }

  .voice-sector-title {
    padding: 0 20px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .voice-sector-title strong {
    font-size: 27px;
    text-align: left;
  }

  .voice-sector-grid {
    padding: 0 14px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .voice-sector-card {
    min-height: 0;
    padding: 20px;
  }

  .voice-sector-card h3 {
    font-size: 24px;
  }

  .voice-sector-card > p {
    margin-top: 22px;
    font-size: 10px;
  }

  .voice-proof > div {
    gap: 16px;
  }

  .voice-proof strong {
    font-size: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voice-morph {
    height: 100svh;
  }

  .voice-morph-card,
  .voice-morph-copy {
    transition: none;
  }

}

/* Voz · portada principal multidioma */
[data-service="voice"] .service-hero h1 {
  margin-top: clamp(22px, 3.5vh, 40px);
  font-size: clamp(52px, 5.75vw, 96px);
}

[data-service="voice"] .service-lede {
  max-width: 680px;
  margin-top: clamp(22px, 3.2vh, 34px);
}

.voice-hero-visual {
  background:
    radial-gradient(circle at 50% 46%, rgba(221, 247, 95, 0.2), transparent 34%),
    linear-gradient(145deg, #13281f, #07100c 70%);
}

.voice-hero-visual .voice-hero-person {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.68) contrast(1.03);
}

.voice-hero-visual[data-reveal],
.voice-hero-visual[data-reveal].is-visible {
  transform: translateY(calc(-50% - 18px));
}

.voice-hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(221, 247, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 247, 95, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.voice-hero-visual::after {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 26%, rgba(7, 16, 12, 0.18) 56%, rgba(7, 16, 12, 0.76) 100%),
    linear-gradient(0deg, rgba(7, 12, 9, 0.4), transparent 40%);
}

.voice-flag-track,
.voice-flag-group {
  width: max-content;
  display: flex;
  align-items: center;
}

.voice-flag-track {
  animation: voice-flag-scroll 31s linear infinite;
  will-change: transform;
}

.voice-flag-group {
  gap: 7px;
  padding-right: 7px;
}

.voice-flag-group > span {
  min-width: max-content;
  padding: 8px 12px 8px 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(10, 23, 17, 0.76);
  border: 1px solid rgba(221, 247, 95, 0.22);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.voice-flag-group i {
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}

.voice-visual-core {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
}

.voice-live-chip {
  position: absolute;
  top: 22%;
  left: 50%;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  background: rgba(7, 16, 12, 0.86);
  border: 1px solid rgba(221, 247, 95, 0.24);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.voice-live-chip span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(221, 247, 95, 0.12);
  animation: voice-live-pulse 1.7s ease-in-out infinite;
}

.voice-wave-orb {
  position: relative;
  width: min(67%, 380px);
  aspect-ratio: 1;
  padding: 18% 12% 12%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 35%, rgba(221, 247, 95, 0.22), transparent 34%),
    rgba(6, 14, 10, 0.9);
  border: 1px solid rgba(221, 247, 95, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 16px rgba(221, 247, 95, 0.035),
    0 0 0 42px rgba(221, 247, 95, 0.025),
    0 34px 80px rgba(0, 0, 0, 0.42);
}

.voice-wave-orb::before,
.voice-wave-orb::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(221, 247, 95, 0.1);
  border-radius: 50%;
}

.voice-wave-orb::before {
  inset: 8%;
}

.voice-wave-orb::after {
  inset: 18%;
}

.voice-wave-bars {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 15%;
  left: 15%;
  height: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.voice-wave-bars span {
  width: 4px;
  height: var(--bar);
  display: block;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(221, 247, 95, 0.42);
  animation: voice-wave-dance 1.35s var(--delay) ease-in-out infinite alternate;
  transform-origin: center;
}

.voice-wave-orb small,
.voice-wave-orb strong {
  position: relative;
  z-index: 3;
}

.voice-wave-orb small {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.13em;
}

.voice-wave-orb strong {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-align: center;
}

.voice-wave-orb em {
  color: var(--lime);
  font-family: var(--serif);
  font-weight: 400;
}

.voice-accent-chips {
  position: absolute;
  right: 8%;
  bottom: 25%;
  left: 8%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.voice-accent-chips span {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(7, 16, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.08em;
}

.voice-hero-visual .visual-caption {
  right: 24px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.56);
}

.voice-hero-highlights {
  max-width: 700px;
  margin-top: clamp(20px, 2.6vh, 28px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.voice-hero-highlights > span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-hero-highlights strong {
  color: var(--lime);
  font-weight: 700;
}

.voice-hero-actions {
  margin-top: clamp(18px, 2.6vh, 28px);
  gap: 22px;
}

.voice-language-rail {
  flex: 0 0 100%;
  width: min(100%, 700px);
  margin-top: -4px;
  padding: 7px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.voice-language-rail .voice-flag-track {
  animation-duration: 36s;
}

.voice-language-rail .voice-flag-group {
  gap: 18px;
  padding-right: 18px;
}

.voice-language-rail .voice-flag-group > span {
  padding: 0;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 6px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.voice-language-rail .voice-flag-group i {
  font-size: 12px;
}

.voice-demo-call {
  min-width: 250px;
  min-height: 62px;
  padding: 9px 10px 9px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(221, 247, 95, 0.12);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.voice-demo-call:hover {
  box-shadow: 0 22px 52px rgba(221, 247, 95, 0.25);
  transform: translateY(-3px);
}

.voice-demo-call small,
.voice-demo-call strong {
  grid-column: 1;
  text-align: left;
}

.voice-demo-call small {
  align-self: end;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.14em;
}

.voice-demo-call strong {
  align-self: start;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.voice-demo-call > span {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 17px;
}

@keyframes voice-flag-scroll {
  to { transform: translateX(-50%); }
}

@keyframes voice-live-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes voice-wave-dance {
  from { transform: scaleY(0.35); opacity: 0.5; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 720px) {
  [data-service="voice"] .service-hero h1 {
    margin-top: 28px;
    font-size: clamp(44px, 12.6vw, 57px);
  }

  [data-service="voice"] .service-lede {
    max-width: 35ch;
    margin-top: 22px;
    font-size: 14px;
  }

  .voice-hero-highlights {
    margin-top: 18px;
    gap: 5px;
  }

  .voice-hero-highlights > span {
    padding: 6px 8px;
    font-size: 6px;
  }

  .voice-hero-actions {
    margin-top: 18px;
    gap: 12px;
  }

  .voice-language-rail {
    width: min(100%, 88vw);
    margin-top: 0;
    padding: 6px 0;
  }

  .voice-language-rail .voice-flag-track {
    animation-duration: 28s;
  }

  .voice-language-rail .voice-flag-group {
    gap: 14px;
    padding-right: 14px;
  }

  .voice-demo-call {
    min-width: min(290px, 88vw);
    min-height: 58px;
  }

  .voice-hero-visual {
    height: 43svh;
  }

  .voice-hero-visual[data-reveal],
  .voice-hero-visual[data-reveal].is-visible {
    transform: none;
  }

  .voice-wave-orb {
    width: min(54%, 210px);
    padding-bottom: 10%;
  }

  .voice-live-chip {
    top: 19%;
  }

  .voice-wave-orb strong {
    margin-top: 7px;
    font-size: 24px;
  }

  .voice-accent-chips {
    bottom: 18%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voice-flag-track,
  .voice-wave-bars span,
  .voice-live-chip span {
    animation-play-state: paused;
  }
}

/* Voz · composición final de portada */
[data-service="voice"] .service-hero-copy {
  width: min(57%, 980px);
  padding: clamp(104px, 13vh, 138px) clamp(26px, 3.2vw, 58px) clamp(84px, 11vh, 112px) var(--page-x);
  place-items: center start;
  text-align: left;
}

[data-service="voice"] .service-hero-main {
  width: 100%;
  min-width: 0;
  max-width: 760px;
  align-items: flex-start;
}

[data-service="voice"] .service-label {
  justify-content: flex-start;
}

[data-service="voice"] .service-hero h1 {
  max-width: 760px;
  margin-top: clamp(24px, 4vh, 42px);
  font-family: var(--display);
  font-size: clamp(50px, 4.45vw, 76px);
  font-weight: 680;
  line-height: 0.93;
  text-align: left;
  text-wrap: balance;
}

[data-service="voice"] .service-hero h1 em {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 0.94em;
  font-style: normal;
  font-weight: 760;
  line-height: 0.96;
}

[data-service="voice"] .service-lede {
  max-width: 610px;
  margin-top: clamp(20px, 3vh, 30px);
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.48;
  text-align: left;
}

[data-service="voice"] .voice-hero-highlights {
  max-width: 610px;
  justify-content: flex-start;
}

[data-service="voice"] .voice-hero-actions {
  width: 100%;
  min-width: 0;
  max-width: 610px;
  justify-content: flex-start;
}

[data-service="voice"] .voice-language-rail {
  width: 100%;
  min-width: 0;
  max-width: 610px;
  flex: 0 0 auto;
}

[data-service="voice"] .service-hero-note {
  text-align: left;
}

[data-service="voice"] .voice-hero-visual {
  right: clamp(24px, 3.6vw, 68px);
  width: min(42vw, 740px);
}

@media (max-width: 980px) and (min-width: 721px) {
  [data-service="voice"] .service-hero-copy {
    width: 59%;
    padding-right: 24px;
  }

  [data-service="voice"] .service-hero h1 {
    max-width: 560px;
    font-size: clamp(46px, 5.5vw, 60px);
  }

  [data-service="voice"] .voice-hero-visual {
    right: 20px;
    width: 45vw;
  }
}

@media (max-width: 720px) {
  [data-service="voice"] .service-hero {
    min-height: 0;
    padding-bottom: 58px;
  }

  [data-service="voice"] .voice-hero-visual,
  [data-service="voice"] .voice-hero-visual[data-reveal],
  [data-service="voice"] .voice-hero-visual[data-reveal].is-visible {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 32px);
    height: 34svh;
    min-height: 260px;
    margin: 78px 16px 0;
    transform: none;
  }

  [data-service="voice"] .service-hero-copy {
    width: 100%;
    min-height: 0;
    padding: 34px 20px 54px;
    place-items: start;
  }

  [data-service="voice"] .service-hero-main {
    max-width: none;
  }

  [data-service="voice"] .service-hero h1 {
    max-width: 11ch;
    margin-top: 26px;
    font-size: clamp(44px, 12.2vw, 56px);
    line-height: 0.94;
  }

  [data-service="voice"] .service-lede {
    max-width: 39ch;
    margin-top: 22px;
    font-size: 15px;
  }

  [data-service="voice"] .voice-hero-highlights {
    justify-content: flex-start;
  }

  [data-service="voice"] .voice-hero-actions {
    max-width: none;
    align-items: stretch;
  }

  [data-service="voice"] .voice-demo-call,
  [data-service="voice"] .voice-hero-actions .button-ghost {
    width: 100%;
    min-width: 0;
  }

  [data-service="voice"] .voice-language-rail {
    width: 100%;
    max-width: none;
  }
}
