﻿:root {
  --bg: #f6f8fb;
  --ink: #101820;
  --muted: #5e6876;
  --line: #dfe6ee;
  --brand: #03a9d9;
  --brand-dark: #027fa6;
  --brand-2: #08c4df;
  --brand-3: #7a2cff;
  --accent: #f3b33d;
  --panel: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Gradiente Vexa compartido con el panel de cliente (assets/css/admin.css --vexa-gradient) */
  --vexa-gradient: linear-gradient(135deg, #08c4df 0%, #118cff 48%, #7a2cff 100%);
  --vexa-gradient-light: linear-gradient(135deg, #08c4df 0%, #7be8ff 48%, #b98bff 100%);

  /* Escala de espaciado (base 8px) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

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

.main-nav a {
  text-decoration: none;
  color: #263241;
}

.nav-button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

main {
  max-width: 1680px;
  margin-inline: auto;
}

.hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  min-height: min(100vh - 72px, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 6vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(8, 196, 223, .24), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(122, 44, 255, .26), transparent 42%),
    linear-gradient(160deg, #0b1420 0%, var(--ink) 55%, #0c1826 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(8, 196, 223, .1) 90deg, transparent 180deg, rgba(122, 44, 255, .1) 270deg, transparent 360deg);
  animation: checkout-spin 24s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 72%);
  pointer-events: none;
}

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

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  -webkit-text-fill-color: initial;
  animation: none;
  color: #9fe8f5;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .28);
}

.hero-mini-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .68);
}

.hero-mini-trust svg,
.hero-mini-trust img {
  width: 20px;
  height: 20px;
}

.hero-mini-trust .hero-mini-stat {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.hero-mini-trust .hero-mini-stat b {
  background: var(--vexa-gradient-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  position: relative;
  display: none;
  padding: 40px;
}

@media (min-width: 900px) {
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .hero-visual {
    padding: 110px 100px;
  }
}

.hero-orb {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(8, 196, 223, .5), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(122, 44, 255, .5), transparent 55%),
    rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 100px rgba(8, 196, 223, .18), inset 0 0 60px rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
  animation: hero-orb-float 6s ease-in-out infinite;
}

.hero-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(10, 18, 28, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(5, 12, 24, .38);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  animation: hero-orb-float 7s ease-in-out infinite;
}

.hero-float-chip img,
.hero-float-chip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-float-chip.chip-1 {
  top: 15%;
  left: 3%;
  animation-delay: .3s;
}

.hero-float-chip.chip-2 {
  bottom: 18%;
  right: 1%;
  animation-delay: 1.1s;
}

.hero-float-chip.chip-3 {
  bottom: 7%;
  left: 21%;
  animation-delay: 2s;
}

@media (max-width: 1100px) {
  .hero-float-chip {
    display: none;
  }
}

.hero-orb-integrations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-integration-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 92px;
  margin: -46px 0 0 -46px;
  padding-top: 4px;
  /* --i y --r vienen de las reglas :nth-child de abajo, no de un style="--i" inline:
     GSAP reescribe el atributo style completo al animar opacity en este mismo
     elemento, y eso borraba un --i inline junto con todo lo demás. */
  --r: 268px;
  transform: rotate(calc(var(--i) * 36deg)) translate(var(--r)) rotate(calc(var(--i) * -36deg));
}

/* Radio variable por ícono (no todos a la misma distancia) — los que caen cerca
   de los chips flotantes (237 negocios / CRM al día / Turno agendado) se alejan
   un poco más para no superponerse con ellos. */
.hero-integration-icon:nth-child(1) { --i: 0; --r: 278px; }
.hero-integration-icon:nth-child(2) { --i: 1; --r: 306px; }
.hero-integration-icon:nth-child(3) { --i: 2; --r: 288px; }
.hero-integration-icon:nth-child(4) { --i: 3; --r: 308px; }
.hero-integration-icon:nth-child(5) { --i: 4; --r: 282px; }
.hero-integration-icon:nth-child(6) { --i: 5; --r: 258px; }
.hero-integration-icon:nth-child(7) { --i: 6; --r: 310px; }
.hero-integration-icon:nth-child(8) { --i: 7; --r: 292px; }
.hero-integration-icon:nth-child(9) { --i: 8; --r: 264px; }
.hero-integration-icon:nth-child(10) { --i: 9; --r: 276px; }

.hero-integration-icon-badge {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 18, 28, .9);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(5, 12, 24, .42);
}

.hero-integration-icon-badge svg {
  width: 28px;
  height: 28px;
}

.hero-integration-icon-badge-img {
  overflow: hidden;
}

.hero-integration-icon-badge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-integration-icon.is-agent .hero-integration-icon-badge {
  background: var(--vexa-gradient, linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff));
  border-color: rgba(255, 255, 255, .3);
}

.hero-integration-icon-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .86);
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(5, 12, 24, .6);
}

.hero-orb-connectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  margin-left: 210px;
  transform-origin: -210px center;
  width: calc(var(--r, 268px) - 210px);
  transform: rotate(calc(var(--i) * 36deg));
  background: linear-gradient(to right, rgba(255, 255, 255, .45), rgba(255, 255, 255, .12));
}

/* Mismo --r que su ícono correspondiente (mismo orden), para que la línea
   siempre llegue justo hasta el badge sin importar el radio. */
.hero-orb-connector:nth-child(1) { --i: 0; --r: 278px; }
.hero-orb-connector:nth-child(2) { --i: 1; --r: 306px; }
.hero-orb-connector:nth-child(3) { --i: 2; --r: 288px; }
.hero-orb-connector:nth-child(4) { --i: 3; --r: 308px; }
.hero-orb-connector:nth-child(5) { --i: 4; --r: 282px; }
.hero-orb-connector:nth-child(6) { --i: 5; --r: 258px; }
.hero-orb-connector:nth-child(7) { --i: 6; --r: 310px; }
.hero-orb-connector:nth-child(8) { --i: 7; --r: 292px; }
.hero-orb-connector:nth-child(9) { --i: 8; --r: 264px; }
.hero-orb-connector:nth-child(10) { --i: 9; --r: 276px; }

@media (max-width: 1100px) {
  .hero-orb-integrations,
  .hero-orb-connectors {
    display: none;
  }
}

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

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

.hero-orb-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 40px rgba(8, 196, 223, .55)) drop-shadow(0 0 70px rgba(122, 44, 255, .45));
}

.hero > *,
.section,
.trust-section,
.contact-section,
.site-header,
.site-footer {
  max-width: 100%;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  color: transparent;
  background: linear-gradient(90deg, #08c4df, #118cff, #7a2cff, #08c4df);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientText 4s linear infinite;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

@keyframes gradientText {
  from { background-position: 0% center; }
  to { background-position: 260% center; }
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button.gradient {
  color: #fff;
  background: var(--vexa-gradient);
  box-shadow: 0 18px 44px rgba(35, 92, 255, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.button.gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(35, 92, 255, .3);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-panel span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section,
.trust-section,
.contact-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.trust-section {
  background:
    radial-gradient(circle at 8% 90%, rgba(0, 210, 255, .08), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(122, 44, 255, .08), transparent 34%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 54%, #f4efff 100%);
}

.trust-carousel {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  overflow: visible;
}

.trust-track {
  display: grid;
  width: 100%;
  min-width: 0;
}

.trust-track .trust-card {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .34s ease, transform .34s ease;
}

.trust-track .trust-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.trust-card {
  position: relative;
  width: min(1440px, 100%);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  margin: 0 auto;
  padding: clamp(42px, 5.4vw, 78px) clamp(28px, 5.6vw, 78px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(248, 254, 255, .96), rgba(255, 255, 255, .96), rgba(247, 240, 255, .96)) padding-box,
    linear-gradient(120deg, rgba(8, 196, 223, .72), rgba(35, 92, 255, .45), rgba(122, 44, 255, .72)) border-box;
  box-shadow: 0 28px 90px rgba(29, 71, 137, .12);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 88%, rgba(0, 210, 255, .24), transparent 34%),
    radial-gradient(circle at 92% 6%, rgba(137, 73, 255, .22), transparent 36%),
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.7), #000 22%, #000 80%, rgba(0,0,0,.72));
  pointer-events: none;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: radial-gradient(circle at 82% 12%, rgba(122, 44, 255, .08), transparent 34%);
  pointer-events: none;
}

.trust-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.trust-card > strong,
.trust-option-mark strong {
  position: relative;
  z-index: 1;
  color: transparent;
  background: var(--vexa-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .9;
}

.trust-option-mark {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.trust-option-mark span {
  width: clamp(82px, 8vw, 110px);
  height: clamp(82px, 8vw, 110px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 140, 255, .22);
  border-radius: 28px;
  color: #118cff;
  background:
    radial-gradient(circle at 72% 20%, rgba(122, 44, 255, .18), transparent 36%),
    rgba(255, 255, 255, .58);
  box-shadow:
    0 22px 48px rgba(17, 140, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.trust-option-mark svg {
  width: 42px;
  height: 42px;
  display: block;
  fill: currentColor;
}

.trust-option-mark strong {
  position: relative;
  font-size: clamp(38px, 4vw, 58px);
  text-align: left;
  letter-spacing: -.04em;
}

.trust-option-mark strong::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #08c4df, #7a2cff);
}

.trust-option-mark p {
  max-width: 230px;
  margin: -2px 0 0;
  color: #2f3f58;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.45;
}

.trust-card h2 {
  max-width: 840px;
  margin: 0 0 18px;
  color: #071326;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.gradient-word {
  color: transparent;
  background: linear-gradient(100deg, #08c4df, #118cff 45%, #7a2cff);
  -webkit-background-clip: text;
  background-clip: text;
}

.trust-card p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.48;
}

.trust-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 22px 11px 13px;
  border: 1px solid rgba(17, 140, 255, .18);
  border-radius: 999px;
  color: #071326;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 34px rgba(33, 92, 180, .08);
  backdrop-filter: blur(14px);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 900;
}

.trust-chip-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #118cff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .35)),
    linear-gradient(135deg, rgba(8, 196, 223, .26), rgba(122, 44, 255, .22));
  border: 1px solid rgba(17, 140, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.trust-chip-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.trust-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 140, 255, .24);
  border-radius: 50%;
  color: #062947;
  background: rgba(255, 255, 255, .9);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(16, 24, 32, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trust-controls > button:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 44, 255, .34);
  box-shadow: 0 18px 42px rgba(16, 24, 32, .12);
}

.trust-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 41, 71, .24);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.trust-dots button.is-active {
  width: 30px;
  background: var(--vexa-gradient);
}

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

.section h2,
.contact-section h2 {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.service-grid,
.project-grid,
.social-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.service-grid article,
.service-card,
.project-card,
.contact-form,
.social-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-grid article,
.service-card {
  padding: 24px;
}

.service-card {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(8, 196, 223, .46);
  box-shadow: 0 18px 44px rgba(16, 24, 32, .08);
  transform: translateY(-3px);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 26px;
  border-color: rgba(0, 174, 255, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 4%, rgba(122, 44, 255, .13), transparent 34%),
    radial-gradient(circle at 4% 96%, rgba(8, 196, 223, .16), transparent 36%),
    rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(20, 60, 110, .07);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 44, 255, .035) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .72;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 255, .28);
  border-radius: 15px;
  color: #127dff;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 14px 34px rgba(35, 92, 255, .11);
  backdrop-filter: blur(12px);
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin-bottom: 22px;
}

.service-card-action {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 126, 255, .22);
  border-radius: 999px;
  color: #07182c;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 10px 28px rgba(33, 92, 180, .08);
  backdrop-filter: blur(10px);
}

.service-card-action b {
  display: inline-block;
  color: #235cff;
  transition: transform .2s ease;
}

.service-card:hover .service-card-action b {
  transform: translateX(4px);
}

.how-it-works-section {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.how-it-works-section h2 {
  max-width: 640px;
  margin-inline: auto;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(24px, 4vw, 40px);
  text-align: left;
}

.how-it-works-step {
  position: relative;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 12px 28px rgba(16, 24, 32, .05);
}

.how-it-works-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08c4df, #118cff 55%, #7a2cff);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}

.how-it-works-step h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 17px;
}

.how-it-works-step h3 svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--brand-dark);
}

.how-it-works-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

.service-quick-links-section {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
  margin: 0 clamp(0px, 2vw, 12px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(8, 196, 223, .07), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(122, 44, 255, .06), transparent 42%),
    #eef2f8;
}

.service-quick-links-label {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.service-quick-links-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-quick-links a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-quick-links a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #08c4df, #7a2cff);
  opacity: 0;
  transition: opacity .18s ease;
}

.service-quick-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 196, 223, .4);
  box-shadow: 0 16px 34px rgba(16, 24, 32, .08);
}

.service-quick-links a:hover::before {
  opacity: 1;
}

.service-quick-links a:hover strong {
  color: var(--brand-dark);
}

.service-quick-links-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  border-radius: 10px;
  background: rgba(3, 169, 217, .1);
  color: var(--brand-dark);
}

.service-quick-links-icon svg {
  width: 19px;
  height: 19px;
}

.service-quick-links strong {
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease;
}

.service-quick-links span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-grid h3,
.project-card h3 {
  margin: 0 0 10px;
}

.service-grid p,
.project-card span,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
}

.projects-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 44, 255, .12), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(8, 196, 223, .14), transparent 32%),
    #f8fbff;
}

.projects-section .section-heading p:not(.eyebrow),
.media-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 60px rgba(16, 24, 32, .08);
}

.media-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef7ff;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  background: transparent;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.media-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #071426;
}

.play-mark {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vexa-gradient);
  box-shadow: 0 18px 34px rgba(17, 140, 255, .28);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.media-card div:last-child {
  padding: 18px;
}

.media-card p {
  margin: 0 0 8px;
  color: #118cff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-card h3 {
  margin: 0 0 8px;
}

.media-card span {
  color: var(--muted);
  line-height: 1.6;
}

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

.project-showcase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-showcase-card > div:last-child {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-showcase-card .media-thumb img {
  object-fit: cover;
}

.project-showcase-card .project-card-actions-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px 20px;
  margin-top: auto;
}

.project-showcase-card .project-card-actions-minimal .project-detail-button {
  margin-top: 0;
}

.project-card-price {
  align-self: flex-start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 174, 255, .28);
  box-shadow: 0 10px 24px rgba(12, 82, 160, .08);
  color: #061527;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.project-card-actions-minimal a {
  white-space: nowrap;
}

.project-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #061527;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 174, 255, .28);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(33, 92, 180, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-demo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(33, 92, 180, .14);
}

.project-demo-cta {
  border: 1px solid rgba(0, 174, 255, .35);
  background: rgba(255, 255, 255, .84);
  color: #061527;
}

.project-showcase-card h3,
.project-showcase-card p,
.project-showcase-card span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.project-card-actions .project-detail-button,
.project-card-actions .project-link {
  margin-top: 0;
}

.project-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-dark);
  font-weight: 800;
}

.project-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(17, 140, 255, .28);
  border-radius: 999px;
  color: #071426;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 26px rgba(16, 24, 32, .08);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.project-detail-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.project-detail-button:hover {
  border-color: rgba(122, 44, 255, .42);
  box-shadow: 0 16px 32px rgba(17, 140, 255, .13);
  transform: translateY(-1px);
}

.project-public-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0 80px;
}

.project-public-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-public-breadcrumb a {
  color: #118cff;
  text-decoration: none;
}

.project-public-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(17, 140, 255, .28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 92%, rgba(8, 196, 223, .18), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(122, 44, 255, .16), transparent 36%),
    linear-gradient(135deg, #f8feff 0%, #fff 48%, #f6f0ff 100%);
  box-shadow: 0 28px 80px rgba(24, 64, 120, .12);
}

.project-public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 82%, transparent);
  pointer-events: none;
}

.project-public-copy,
.project-public-gallery {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.project-public-copy h1 {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
}

.project-public-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.project-public-tags,
.project-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-public-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 140, 255, .24);
  border-radius: 999px;
  color: #071426;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 12px 28px rgba(33, 92, 180, .08);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.project-public-gallery {
  display: grid;
  gap: 12px;
}

.project-public-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(16, 24, 32, .13);
}

.project-public-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.project-public-thumbs button {
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.project-public-thumbs button.is-active {
  border-color: #118cff;
  box-shadow: 0 10px 22px rgba(17, 140, 255, .16);
}

.project-public-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.project-public-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 22px;
  margin-top: 24px;
}

.project-public-detail article,
.project-public-meta,
.project-public-cta {
  border: 1px solid rgba(8, 196, 223, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 70px rgba(24, 64, 120, .08);
}

.project-public-detail article {
  padding: clamp(24px, 4vw, 42px);
}

.project-public-detail h2,
.project-public-cta h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.project-public-detail article > p:not(.eyebrow),
.project-public-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.project-public-meta {
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 24px;
}

.project-public-meta span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-public-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.project-public-cta {
  margin-top: 24px;
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at 8% 90%, rgba(8, 196, 223, .18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(122, 44, 255, .16), transparent 34%),
    #fff;
}

.project-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 18px;
  overscroll-behavior: contain;
}

.project-detail-modal.is-open {
  display: grid;
}

.project-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 38, .72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.project-detail-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(122, 44, 255, .12), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(8, 196, 223, .16), transparent 34%),
    #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
}

.project-detail-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 14px 14px -56px auto;
  border: 1px solid rgba(8, 196, 223, .25);
  border-radius: 50%;
  color: #071426;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(16, 24, 32, .12);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(22px, 4vw, 44px);
}

.project-detail-media {
  min-width: 0;
}

.project-detail-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(8, 196, 223, .2);
  border-radius: 18px;
  background: #f4fbff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, .09);
}

.project-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.project-detail-thumbs button {
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.project-detail-thumbs button.is-active {
  border-color: #118cff;
}

.project-detail-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.project-detail-content {
  min-width: 0;
  align-self: center;
}

.project-detail-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.project-detail-client {
  margin: 0 0 18px;
  color: #118cff;
  font-weight: 900;
}

.project-detail-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-detail-video,
.project-detail-visit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #08c4df, #118cff 50%, #7a2cff);
  box-shadow: 0 18px 34px rgba(17, 140, 255, .22);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.project-detail-visit {
  color: #071426;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(8, 196, 223, .28);
}

.project-detail-open {
  overflow: hidden;
  touch-action: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  overscroll-behavior: contain;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, .72);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(86vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: #071426;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.video-modal-panel h2 {
  margin: 0;
  padding: 16px 58px 14px 18px;
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
}

.video-modal-player {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-player video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.video-fallback {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 140, 255, .9);
  font-weight: 800;
  text-decoration: none;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-open {
  overflow: hidden;
  touch-action: none;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1480px;
  margin-inline: auto;
}

.contact-section h2 {
  max-width: 620px;
  font-size: clamp(34px, 3vw, 48px);
}

.contact-section > div > p {
  max-width: 640px;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 30px 60px rgba(16, 24, 32, .08);
}

.contact-form button[type="submit"] {
  border: none;
  border-radius: 12px;
  background: var(--vexa-gradient);
  box-shadow: 0 16px 34px rgba(17, 140, 255, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(17, 140, 255, .36);
}

.contact-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.instagram-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(214, 41, 118, .18);
  background:
    linear-gradient(135deg, rgba(254, 218, 117, .14), rgba(250, 126, 30, .1) 30%, rgba(214, 41, 118, .12) 65%, rgba(150, 47, 191, .12));
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.instagram-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(214, 41, 118, .18);
  border-color: rgba(214, 41, 118, .34);
}

.instagram-promo-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #FEDA75, #FA7E1E 30%, #D62976 65%, #962FBF);
}

.instagram-promo-icon .instagram-logo,
.instagram-promo-icon .instagram-circle {
  border-color: #fff;
}

.instagram-promo-icon .instagram-dot {
  background: #fff;
}

.instagram-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 220px;
  min-width: 0;
}

.instagram-promo-copy strong {
  font-size: 15px;
  color: var(--ink);
}

.instagram-promo-copy span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.instagram-promo-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FA7E1E, #D62976 60%, #962FBF);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.instagram-logo {
  width: 24px;
  height: 24px;
  border: 2px solid #101820;
  border-radius: 7px;
  position: relative;
  box-sizing: border-box;
  background: transparent;
}

.instagram-circle {
  width: 10px;
  height: 10px;
  border: 2px solid #101820;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  box-sizing: border-box;
}

.instagram-dot {
  width: 3px;
  height: 3px;
  background: #101820;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 4px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form textarea {
  resize: none;
}

.message-compose {
  position: relative;
  display: block;
}

.message-compose textarea {
  min-height: 130px;
  padding-right: 56px;
  padding-bottom: 48px;
}

.attach-control {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #4f5d6d;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 24, 32, .1);
  transition: transform .16s ease, color .16s ease, border-color .16s ease;
}

.attach-control:hover {
  color: var(--brand-dark);
  border-color: rgba(3, 169, 217, .46);
  transform: translateY(-1px);
}

.attach-control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.attach-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert.success {
  color: #12643f;
  background: #ecfff6;
}

.form-alert.error {
  color: #a92b2b;
  background: #fff0f0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(280px, 1.3fr);
  gap: clamp(22px, 5vw, 64px);
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand span,
.footer-faq p {
  color: rgba(255, 255, 255, .72);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-faq {
  display: grid;
  gap: 10px;
}

.footer-faq h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.footer-faq details {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.footer-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.footer-faq p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.manual-client-page {
  background: #e9eff5;
}

.client-manual {
  width: min(980px, calc(100% - 28px));
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, .12);
}

.client-manual-hero {
  padding: clamp(34px, 6vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, #101820 0%, #163044 62%, #03a9d9 100%);
}

.client-manual-hero .brand {
  color: #fff;
  margin-bottom: 28px;
}

.client-manual-hero p,
.client-manual-hero span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.client-manual-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.client-manual-body {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 44px);
}

.client-manual-body article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.client-manual-body h2 {
  margin: 0 0 12px;
  color: #075775;
}

.client-manual-body li {
  margin: 8px 0;
  line-height: 1.6;
}

.client-manual-footer {
  padding: 18px clamp(24px, 5vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@page {
  size: A4;
  margin: 12mm;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .manual-client-page {
    background: #fff !important;
  }

  .client-manual {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .client-manual-hero {
    background: #081b3a !important;
    color: #fff !important;
    padding: 28px 34px;
  }

  .client-manual-hero h1 {
    font-size: 34px;
  }

  .client-manual-body {
    padding: 28px 34px 54px;
  }

  .client-manual-body article {
    break-inside: avoid;
    page-break-inside: avoid;
    background: #fbfdff !important;
  }

  .client-manual-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8fafc !important;
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .media-grid,
  .social-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 22px;
  }

  .site-header,
  .site-footer {
    align-items: center;
    flex-direction: row;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 32, .14);
  }

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

  .hero {
    min-height: auto;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    padding: 48px 18px 38px;
    gap: 28px;
    overflow: hidden;
  }

  .hero > div,
  .hero-actions,
  .hero-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-panel,
  .service-grid,
  .project-grid,
  .media-grid,
  .project-detail-layout,
  .social-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
  }

  .button,
  .project-detail-button,
  .project-detail-video,
  .project-detail-visit,
  .contact-form button {
    width: 100%;
  }

  .project-detail-modal {
    padding: 10px;
  }

  .project-detail-panel {
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .project-detail-layout {
    padding: 20px;
  }

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

  .project-detail-description {
    font-size: 16px;
  }

  .project-public-page {
    width: min(100% - 24px, 760px);
    padding: 24px 0 56px;
  }

  .project-public-hero,
  .project-public-detail {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .project-public-copy h1 {
    font-size: clamp(34px, 12vw, 52px);
    overflow-wrap: anywhere;
  }

  .project-public-actions .button,
  .project-public-actions button,
  .project-public-actions a {
    width: 100%;
  }

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

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

  .trust-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-carousel {
    width: 100%;
  }

  .trust-card {
    align-items: start;
    min-height: auto;
    gap: 24px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .trust-card > strong,
  .trust-option-mark strong {
    font-size: clamp(42px, 14vw, 72px);
  }

  .trust-option-mark {
    min-width: 0;
    align-items: flex-start;
  }

  .trust-option-mark span {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .trust-option-mark svg {
    width: 32px;
    height: 32px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .video-modal-panel h2 {
    padding: 14px 54px 12px 14px;
  }

  .video-modal-player {
    aspect-ratio: 9 / 16;
    max-height: 72dvh;
  }

  .trust-card h2 {
    font-size: clamp(30px, 10vw, 42px);
    overflow-wrap: anywhere;
  }

  .trust-card p {
    font-size: 16px;
  }

  .trust-highlights {
    gap: 10px;
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .trust-highlights span {
    width: 100%;
    min-height: 50px;
    padding: 9px 14px 9px 10px;
  }

  .trust-chip-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .trust-chip-icon svg {
    width: 16px;
    height: 16px;
  }

.client-manual {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

.service-page {
  overflow-x: hidden;
}

.service-hero,
.service-detail,
.service-process,
.service-faq-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.service-hero {
  padding: 92px 0 56px;
}

.service-hero h1,
.service-detail h2,
.service-process h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
}

.service-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.service-tags,
.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.service-tags span {
  border: 1px solid rgba(8, 196, 223, .34);
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(8, 196, 223, .12), rgba(122, 44, 255, .08));
  color: var(--ink);
  font-weight: 800;
}

.service-detail,
.service-process,
.service-faq-section {
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(122, 44, 255, .12), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(8, 196, 223, .12), transparent 30%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 22px 60px rgba(16, 24, 32, .07);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 30px;
}

.service-detail h2,
.service-process h2,
.service-faq-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.service-benefits {
  display: grid;
  gap: 14px;
}

.service-benefits article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.service-benefits article span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--vexa-gradient);
}

.service-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-steps article {
  min-width: 150px;
  flex: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.service-steps strong {
  display: block;
  margin-bottom: 8px;
  background: var(--vexa-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
}

.service-steps span {
  color: var(--ink);
  font-weight: 800;
}

.service-faq-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 28px;
}

.service-faq-heading h2 {
  margin: 0;
  color: var(--ink);
}

.service-faq-list {
  display: grid;
  gap: 12px;
}

.service-faq-list article {
  padding: 18px;
  border: 1px solid rgba(8, 196, 223, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.service-faq-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.service-faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 760px) {
  .service-hero,
  .service-detail,
  .service-process,
  .service-faq-section {
    width: min(100% - 28px, 1120px);
  }

  .service-hero {
    padding-top: 48px;
  }

  .service-detail,
  .service-faq-section {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Heroes individuales de servicios. */
.service-page {
  background:
    radial-gradient(circle at 2% 28%, rgba(8, 196, 223, .12), transparent 34%),
    radial-gradient(circle at 96% 14%, rgba(122, 44, 255, .12), transparent 32%),
    linear-gradient(135deg, #f7fcff 0%, #fff 48%, #f7f1ff 100%);
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 8vw, 96px) 0 clamp(44px, 6vw, 70px);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 42px) -2vw auto auto;
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  background:
    linear-gradient(rgba(0, 126, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 126, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 0 44%, transparent 72%);
  pointer-events: none;
}

.service-hero-copy,
.service-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-hero h1 {
  max-width: 720px;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.service-hero > p:not(.eyebrow),
.service-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #42516a;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.service-cta {
  margin-top: 8px;
}

.service-visual {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: visible;
}

.service-device {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: 5%;
  width: min(82%, 560px);
  min-height: 390px;
  padding: 22px;
  border: 1px solid rgba(0, 126, 255, .18);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 36px 90px rgba(23, 58, 120, .14),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
  animation: serviceDeviceFloat 7s ease-in-out infinite;
}

.service-device-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #56708f;
  font-size: 13px;
  font-weight: 900;
}

.service-device-top span {
  margin-right: auto;
  color: #061527;
}

.service-device-top i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08c4df, #235cff);
  box-shadow: 0 0 16px rgba(35, 92, 255, .35);
}

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

.service-metric,
.service-chart,
.service-mini-card,
.service-visual-card,
.service-flow span {
  border: 1px solid rgba(0, 126, 255, .14);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 36px rgba(29, 71, 137, .08);
  backdrop-filter: blur(14px);
}

.service-metric,
.service-chart {
  min-height: 128px;
  border-radius: 20px;
  padding: 18px;
}

.service-metric span,
.service-mini-card span,
.service-visual-card span {
  display: block;
  color: #607083;
  font-size: 13px;
  font-weight: 800;
}

.service-metric strong,
.service-visual-card strong {
  display: block;
  margin-top: 10px;
  background: var(--vexa-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .95;
}

.service-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.service-chart span {
  flex: 1;
  min-height: 30px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #08c4df, #235cff 56%, #7a2cff);
  box-shadow: 0 10px 20px rgba(35, 92, 255, .16);
}

.service-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
}

.service-mini-card b {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(8, 196, 223, .2), rgba(122, 44, 255, .18));
  border: 1px solid rgba(17, 140, 255, .22);
}

.service-visual-card {
  position: absolute;
  z-index: 4;
  width: min(32vw, 176px);
  min-width: 148px;
  padding: 18px;
  border-radius: 22px;
  overflow: visible;
}

.service-float-one {
  top: 0;
  left: 4%;
  transform: rotate(-6deg);
}

.service-float-two {
  right: 1%;
  bottom: 138px;
  transform: rotate(5deg);
}

.service-float-two strong {
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
}

.service-float-two span {
  margin-top: 6px;
}

.service-flow {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 6%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-flow span {
  position: relative;
  padding: 14px 18px;
  border-radius: 18px;
  color: #10233d;
  font-weight: 900;
}

.service-flow span + span::before {
  content: "\2192";
  position: absolute;
  left: -15px;
  color: #118cff;
}

@keyframes serviceDeviceFloat {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

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

.service-float-one,
.service-float-two {
  animation: serviceCardFloat 6.5s ease-in-out infinite;
}

.service-float-two {
  animation-delay: -2.2s;
}

.service-hero .button.primary {
  box-shadow: 0 18px 44px rgba(35, 92, 255, .22);
}

@media (max-width: 980px) {
  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-top: 46px;
  }

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

  .service-device {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 320px;
    transform: none;
    animation: none;
  }

  .service-float-one {
    top: -12px;
    left: auto;
    right: 18px;
  }

  .service-float-two {
    display: none;
  }
}

@media (max-width: 620px) {
  .service-hero,
  .service-detail,
  .service-process,
  .service-faq-section {
    width: min(100% - 28px, 1120px);
  }

  .service-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .service-tags {
    gap: 10px;
    margin: 22px 0;
  }

  .service-tags span {
    max-width: 100%;
    padding: 9px 12px;
    font-size: 13px;
  }

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

  .service-device {
    padding: 16px;
    border-radius: 22px;
  }

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

  .service-chart {
    min-height: 96px;
  }

  .service-visual-card {
    display: none;
  }

  .service-flow {
    position: relative;
    right: auto;
    margin-top: 14px;
    justify-content: flex-start;
  }

  .service-flow span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .service-flow span + span::before {
    display: none;
  }
}

/* Banner premium de compra/alquiler y prueba social. */
.trust-section {
  background:
    radial-gradient(circle at 8% 90%, rgba(0, 210, 255, .10), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(122, 44, 255, .10), transparent 34%),
    linear-gradient(135deg, #f7fcff 0%, #ffffff 50%, #f5efff 100%);
}

.trust-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 4.8vw, 58px) clamp(30px, 5vw, 66px);
  border: 1px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(248, 254, 255, .96), rgba(255, 255, 255, .94), rgba(245, 239, 255, .94)) padding-box,
    linear-gradient(135deg, rgba(0, 184, 255, .56), rgba(122, 53, 255, .58)) border-box;
  box-shadow: 0 26px 76px rgba(24, 64, 120, .12);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 85%, rgba(0, 210, 255, .28), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(137, 73, 255, .24), transparent 36%),
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  mask-image: linear-gradient(to right, transparent, black 16%, black 86%, transparent);
  pointer-events: none;
}

.trust-card > strong,
.trust-option-mark {
  position: relative;
  z-index: 1;
}

.trust-card > strong {
  width: fit-content;
  font-size: clamp(62px, 8vw, 122px);
  letter-spacing: -0.08em;
}

.trust-option-mark {
  min-width: 0;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 14px;
}

.trust-option-mark span {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 174, 255, .28);
  box-shadow: 0 18px 45px rgba(0, 174, 255, .16);
}

.trust-option-mark strong {
  font-size: clamp(38px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.trust-card h2,
.trust-card p,
.trust-highlights {
  position: relative;
  z-index: 1;
}

.trust-card h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #101722;
}

.trust-card p {
  max-width: 790px;
  color: #243044;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.trust-highlights {
  gap: 12px;
  margin-top: 26px;
}

.trust-highlights span {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #061527;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(0, 140, 255, .28);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(33, 92, 180, .08);
}

@media (max-width: 820px) {
  .trust-card {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    gap: 24px;
  }

  .trust-card > strong {
    font-size: clamp(58px, 18vw, 96px);
  }

  .trust-option-mark span {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .trust-option-mark strong {
    font-size: 40px;
  }

  .trust-card h2 {
    font-size: clamp(31px, 9vw, 44px);
  }
}

/* Pricing */

.pricing-section {
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 196, 223, .22), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(122, 44, 255, .22), transparent 36%),
    linear-gradient(160deg, #0b1420 0%, var(--ink) 55%, #0c1826 100%);
}

.pricing-section .section-heading h2 {
  color: #fff;
  background: none;
}

.pricing-section .section-heading p {
  margin-top: 10px;
  max-width: 640px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  /* auto-fit y no repeat(4): la cantidad de planes la decide el admin desde el
     panel, así que la grilla se acomoda sola a 3, 5 o los que haya. */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
  gap: 20px;
  max-width: 1360px;
  margin-inline: auto;
}

.pricing-card.is-free {
  background: rgba(255, 255, 255, .04);
  border-style: dashed;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}

.pricing-card.is-highlighted {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, .94), rgba(16, 24, 32, .94)) padding-box,
    var(--vexa-gradient) border-box;
  box-shadow: 0 30px 70px rgba(8, 30, 60, .45);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--vexa-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.pricing-card h3 {
  margin: 6px 0 4px;
  color: #fff;
  font-size: 24px;
}

.pricing-tagline {
  min-height: 42px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-price {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
}

.pricing-price small {
  margin-left: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  font-weight: 700;
}

.pricing-trial {
  margin: -14px 0 18px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  font-weight: 600;
}

.pricing-features {
  flex: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features .trust-chip-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: #7be8ff;
  background: rgba(255, 255, 255, .12);
}

.pricing-features .trust-chip-icon svg {
  width: 14px;
  height: 14px;
}

.pricing-features span {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  text-align: center;
}

.pricing-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 80px auto 0;
  padding-top: 56px;
  max-width: 640px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.pricing-close-line {
  margin: 0 0 36px;
  max-width: 560px;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.pricing-close-cta {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: 15px 34px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(99, 102, 241, .38);
  transition: transform .16s ease, box-shadow .16s ease;
}

.pricing-close-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(99, 102, 241, .5);
}

.pricing-close .pricing-note {
  margin: 30px auto 0;
  max-width: 500px;
  line-height: 1.7;
}

.pricing-launch-tag {
  display: inline-block;
  margin: 0 0 26px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #08c4df, #7a2cff);
  box-shadow: 0 10px 26px rgba(122, 44, 255, .3);
}

.pricing-countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 40px;
  padding: 20px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pcd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.pcd-num {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.pcd-lbl {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.pcd-sep {
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  color: rgba(255, 255, 255, .35);
}

@media (max-width: 480px) {
  .pricing-countdown { gap: 8px; padding: 16px 14px; }
  .pcd-unit { min-width: 42px; }
}

.pricing-hero {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 24px;
  text-align: center;
}

.pricing-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
}

.pricing-hero p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.service-cross-sell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 30px 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(122, 44, 255, .35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(8, 196, 223, .3), transparent 40%),
    linear-gradient(135deg, #0b1420, var(--ink));
}

.service-cross-sell-copy {
  max-width: 640px;
}

.service-cross-sell .eyebrow {
  margin-bottom: 8px;
}

.service-cross-sell h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
}

.service-cross-sell p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.service-cross-sell .button.primary {
  flex-shrink: 0;
}

@media (max-width: 920px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.is-highlighted {
    transform: none;
  }
}

@media (max-width: 640px) {
  .service-cross-sell {
    padding: 26px 22px;
  }

  .service-cross-sell .button.primary {
    width: 100%;
  }
}

/* ===== Suscripcion / Checkout ===== */

.checkout-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px 28px 64px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(8, 196, 223, .28), transparent 38%),
    radial-gradient(circle at 90% 85%, rgba(122, 44, 255, .28), transparent 40%),
    linear-gradient(160deg, #0b1420 0%, var(--ink) 55%, #0c1826 100%);
}

.checkout-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(8, 196, 223, .12) 90deg, transparent 180deg, rgba(122, 44, 255, .12) 270deg, transparent 360deg);
  animation: checkout-spin 18s linear infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-hero::before {
    animation: none;
  }
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-hero > * {
  position: relative;
  z-index: 1;
}

.checkout-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9fe8f5;
  margin: 0 0 18px;
}

.checkout-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
  font-weight: 900;
}

.checkout-hero p {
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 560px);
  gap: 28px;
  align-items: start;
  max-width: 1020px;
  margin: -38px auto 0;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* En celular el resumen del plan ocupaba pantalla y media antes del primer
   campo: el que ya decidió comprar tenía que scrollear buscando dónde escribir.
   El formulario va primero y el resumen queda abajo, para el que quiera
   releerlo. El plan y el precio se confirman igual en el paso 4 antes de pagar,
   así que nadie paga sin verlos. */
@media (max-width: 640px) {
  .checkout-layout { display: flex; flex-direction: column; }
  .checkout-layout > .checkout-form-card { order: 1; }
  .checkout-layout > .checkout-plan-card { order: 2; }
}

.checkout-plan-card {
  position: relative;
  color: #fff;
  border-radius: 24px;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 15% 10%, rgba(8, 196, 223, .22), transparent 45%),
    linear-gradient(165deg, #101c2c 0%, #0a1420 100%);
  box-shadow: 0 30px 60px rgba(5, 12, 24, .35);
}

.checkout-plan-card .plan-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7be8ff;
  margin: 0 0 6px;
}

.checkout-plan-card h3 {
  font-size: 28px;
  margin: 0 0 4px;
  font-weight: 900;
}

.checkout-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 20px;
}

.checkout-plan-price strong {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 900;
  background: var(--vexa-gradient-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-plan-price span {
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
  font-size: 14px;
}

.checkout-plan-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checkout-plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
}

.checkout-plan-card li svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: #08c4df;
  margin-top: 1px;
}

.checkout-plan-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .72);
}

.checkout-plan-note svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #7be8ff;
  margin-top: 2px;
}

.checkout-form-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 30px 60px rgba(16, 24, 32, .12);
  border: 1px solid rgba(16, 24, 32, .06);
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.checkout-steps span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.checkout-steps span.is-active {
  color: var(--ink);
}

.checkout-steps span i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-style: normal;
  font-size: 11px;
  background: var(--line);
  color: var(--muted);
}

.checkout-steps span.is-active i {
  background: var(--vexa-gradient);
  color: #fff;
}

.checkout-steps span:not(:last-child)::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--line);
}

.checkout-form-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.checkout-form-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.checkout-form input {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.checkout-form select {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.checkout-form input:focus-visible,
.checkout-form select:focus-visible {
  outline: none;
  border-color: #118cff;
  box-shadow: 0 0 0 4px rgba(17, 140, 255, .14);
}

.checkout-form-section {
  margin: 6px 0 -4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.checkout-form > .checkout-form-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

@media (max-width: 640px) {
  .checkout-form-row-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .checkout-form-row,
  .checkout-form-row-3 {
    grid-template-columns: 1fr;
  }
}

.checkout-submit {
  position: relative;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: var(--vexa-gradient);
  box-shadow: 0 16px 34px rgba(17, 140, 255, .32);
  transition: transform .18s ease, box-shadow .18s ease;
}

.checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(17, 140, 255, .4);
}

.checkout-submit:active {
  transform: translateY(0);
}

.checkout-submit.is-loading {
  pointer-events: none;
  opacity: .85;
}

.checkout-submit.is-loading .checkout-submit-label {
  padding-left: 26px;
  position: relative;
}

.checkout-submit.is-loading .checkout-submit-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkout-spin-btn .7s linear infinite;
}

@keyframes checkout-spin-btn {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-submit.is-loading .checkout-submit-label::before {
    animation: none;
  }
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.checkout-trust-row svg {
  width: 16px;
  height: 16px;
  color: #118cff;
}

.checkout-error {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .28);
  color: #b91c1c;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.checkout-error svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 4px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  background: #fff;
  color: #3c4043;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.google-signin-button:hover {
  border-color: #d2d5d9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.google-signin-button[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.google-signin-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkout-terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 16px 0;
  cursor: pointer;
}

.checkout-terms-check input {
  margin-top: 3px;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkout-terms-check a {
  color: #118cff;
  font-weight: 700;
}

/* ===== Confirmacion de suscripcion ===== */

.confirmation-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  max-width: 560px;
  margin: 20px auto 60px;
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 196, 223, .26), transparent 40%),
    radial-gradient(circle at 88% 88%, rgba(122, 44, 255, .26), transparent 42%),
    linear-gradient(160deg, #0b1420 0%, var(--ink) 55%, #0c1826 100%);
  box-shadow: 0 34px 70px rgba(5, 12, 24, .35);
}

.confirmation-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}

.confirmation-icon svg {
  width: 42px;
  height: 42px;
}

.confirmation-hero.is-success .confirmation-icon {
  background: rgba(16, 201, 121, .16);
  border-color: rgba(16, 201, 121, .35);
  animation: confirmation-pulse 1.8s ease-out 1;
}

.confirmation-hero.is-success .confirmation-icon svg {
  color: #34d399;
}

.confirmation-hero.is-pending .confirmation-icon svg {
  color: #fbbf24;
}

.confirmation-hero.is-error .confirmation-icon svg {
  color: #f87171;
}

.confirmation-hero.is-neutral .confirmation-icon svg {
  color: #7be8ff;
}

@media (prefers-reduced-motion: reduce) {
  .confirmation-hero.is-success .confirmation-icon {
    animation: none;
  }
}

@keyframes confirmation-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 201, 121, .45);
  }
  100% {
    box-shadow: 0 0 0 22px rgba(16, 201, 121, 0);
  }
}

.confirmation-hero h1 {
  font-size: clamp(24px, 3.6vw, 32px);
  margin: 0 0 12px;
  font-weight: 900;
}

.confirmation-hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.confirmation-hero .button.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 520px) {
  .checkout-hero {
    padding: 40px 20px 52px;
  }

  .checkout-form-card,
  .checkout-plan-card {
    padding: 24px 20px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .38);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: whatsapp-float-pop .5s ease .3s both;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 42px rgba(37, 211, 102, .46);
}

@keyframes whatsapp-float-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* ===== Minichat público de Vexa ===== */

.vexa-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}

.vexa-chat-launcher {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: var(--vexa-gradient);
  box-shadow: 0 16px 34px rgba(17, 140, 255, .38);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: whatsapp-float-pop .5s ease .3s both;
}

.vexa-chat-launcher:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 42px rgba(17, 140, 255, .46);
}

.vexa-chat-launcher-icon,
.vexa-chat-launcher-close {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  transition: opacity .15s ease, transform .15s ease;
}

.vexa-chat-launcher-close {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
}

.vexa-chat-widget.is-open .vexa-chat-launcher-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
}

.vexa-chat-widget.is-open .vexa-chat-launcher-close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vexa-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(360px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg, 16px);
  background: #0c1420;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 70px rgba(5, 12, 24, .5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.vexa-chat-widget.is-open .vexa-chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .vexa-chat-panel {
    transition: opacity .01s linear;
  }
  .vexa-chat-widget.is-open .vexa-chat-panel {
    transform: none;
  }
}

.vexa-chat-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--vexa-gradient);
  color: #fff;
}

.vexa-chat-panel-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  overflow: hidden;
}

.vexa-chat-panel-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.vexa-chat-panel-header div {
  flex: 1 1 auto;
  min-width: 0;
}

.vexa-chat-panel-header strong {
  display: block;
  font-size: 14px;
}

.vexa-chat-panel-header span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
}

.vexa-chat-panel-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.vexa-chat-panel-close svg {
  width: 18px;
  height: 18px;
}

.vexa-chat-panel-close:hover {
  background: rgba(255, 255, 255, .14);
}

.vexa-chat-panel-body {
  flex: 1 1 auto;
  min-height: 180px;
  max-height: 320px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #0c1420;
}

.vexa-chat-bubble {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.45;
}

.vexa-chat-bubble.is-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-top-left-radius: 3px;
}

.vexa-chat-bubble.is-user {
  align-self: flex-end;
  background: var(--vexa-gradient);
  color: #fff;
  border-top-right-radius: 3px;
}

.vexa-chat-panel-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #0c1420;
}

.vexa-chat-panel-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 13.5px;
}

.vexa-chat-panel-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.vexa-chat-panel-form input:disabled {
  opacity: .5;
}

.vexa-chat-panel-form button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--vexa-gradient);
}

.vexa-chat-panel-form button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.vexa-chat-panel-form button svg {
  width: 18px;
  height: 18px;
}

.vexa-chat-panel-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.vexa-chat-panel-wa svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.vexa-chat-panel-wa:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .vexa-chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .vexa-chat-launcher {
    width: 52px;
    height: 52px;
  }

  .vexa-chat-panel {
    width: calc(100vw - 32px);
    bottom: 66px;
  }
}

.pricing-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(8, 196, 223, .12);
  border: 1px solid rgba(8, 196, 223, .3);
  color: #7be8ff;
  font-size: 13px;
  font-weight: 700;
}

/* ===== WhatsApp mockup ===== */

.wa-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1024 / 1536;
  font-family: Inter, Arial, sans-serif;
  filter: drop-shadow(0 30px 60px rgba(5, 12, 24, .3));
}

.wa-mockup-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.wa-mockup-screen {
  position: absolute;
  top: 18.23%;
  left: 24.02%;
  right: 27.44%;
  bottom: 16.8%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: #E9EDEF;
}

.wa-mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #075E54;
  color: #fff;
  flex: 0 0 auto;
}

.wa-mockup-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0c1116;
  padding: 6px;
  box-sizing: border-box;
}

.wa-mockup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-mockup-header strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

.wa-mockup-status {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
}

.wa-mockup-header-icons {
  margin-left: auto;
  color: rgba(255, 255, 255, .82);
}

.wa-mockup-header-icons svg {
  width: 20px;
  height: 20px;
}

.wa-mockup-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px 12px;
  background-color: #E9EDEF;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(0, 0, 0, .025) 0, transparent 3%),
    radial-gradient(circle at 32% 68%, rgba(0, 0, 0, .025) 0, transparent 3%),
    radial-gradient(circle at 76% 28%, rgba(0, 0, 0, .025) 0, transparent 3%),
    radial-gradient(circle at 60% 84%, rgba(0, 0, 0, .025) 0, transparent 3%);
  background-size: 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wa-mockup-body::-webkit-scrollbar {
  display: none;
}

.wa-mockup-day {
  align-self: center;
  margin-bottom: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  color: #54656f;
  font-size: 11px;
  font-weight: 700;
}

.wa-bubble-row {
  display: flex;
  opacity: 0;
  transform: translateY(8px);
}

.wa-mockup.is-visible .wa-bubble-row {
  animation: wa-bubble-in .35s ease forwards;
  animation-delay: var(--wa-delay, 0ms);
}

@keyframes wa-bubble-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-bubble-row,
  .wa-mockup.is-visible .wa-bubble-row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.wa-bubble-row.is-them {
  justify-content: flex-start;
}

.wa-bubble-row.is-me {
  justify-content: flex-end;
}

.wa-bubble {
  max-width: 78%;
  padding: 7px 9px 8px 10px;
  border-radius: 9px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  position: relative;
}

.wa-bubble-row.is-them .wa-bubble {
  background: #fff;
  border-top-left-radius: 2px;
}

.wa-bubble-row.is-me .wa-bubble {
  background: #D9FDD3;
  border-top-right-radius: 2px;
}

.wa-bubble-text {
  display: block;
  margin-bottom: 2px;
}

.wa-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 10.5px;
  color: #667781;
}

.wa-check {
  width: 15px;
  height: 11px;
  color: #53bdeb;
}

.wa-typing-row {
  margin-top: 2px;
}

.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 14px;
  background: #fff;
  border-top-left-radius: 2px;
}

.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #93a0a8;
  animation: wa-typing-dot 1.2s ease infinite;
}

.wa-typing span:nth-child(2) { animation-delay: .15s; }
.wa-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes wa-typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.wa-mockup-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: #F0F2F5;
  color: #8696a0;
  font-size: 13px;
}

.wa-mockup-input svg {
  width: 20px;
  height: 20px;
  padding: 6px;
  border-radius: 50%;
  background: #00A884;
  color: #fff;
}

/* ===== Testimonials carousel ===== */

.testimonials-section {
  margin: 0 clamp(0px, 2vw, 12px) clamp(20px, 3vw, 40px);
  border-radius: 28px;
  background: #eef4f6;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
  animation: testimonials-marquee 80s linear infinite;
}

.testimonials-carousel:hover .testimonials-track,
.testimonials-carousel:focus-within .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
  }

  .testimonials-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.testimonial-card {
  flex: 0 0 clamp(260px, 30vw, 340px);
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(16, 24, 32, .06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: rgba(16, 24, 32, .16);
}

.testimonial-stars svg.is-filled {
  fill: #f3b33d;
}

.testimonial-quote {
  flex: 1;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vexa-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.testimonial-author > div span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== WhatsApp demo section ===== */

.wa-demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  margin: 0 clamp(0px, 2vw, 12px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 15%, rgba(8, 196, 223, .09), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(122, 44, 255, .08), transparent 45%),
    #f2f0fb;
}

.wa-demo-copy .eyebrow {
  width: fit-content;
}

.wa-demo-copy h2 {
  max-width: 480px;
  margin: 0 0 14px;
}

.wa-demo-copy > p:not(.wa-demo-disclaimer) {
  max-width: 480px;
  color: var(--muted);
  margin-bottom: 26px;
}

.wa-demo-disclaimer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.wa-demo-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wa-demo-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wa-demo-stage-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Etiquetas flotantes que "narran" lo que hace Vexa, sobre el hueco vacío a
   la izquierda de las maquetas. Ocultas en pantallas chicas para no chocar
   con el layout de una sola columna. */
.wa-demo-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.wa-demo-chip {
  position: absolute;
  left: -14%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #101820;
  white-space: nowrap;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

/* La laptop desborda más hacia la izquierda que el teléfono, así que sus
   etiquetas necesitan más separación para no quedar pegadas a la pantalla. */
.wa-demo-chips-laptop .wa-demo-chip {
  left: -24%;
}

.wa-demo-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--vexa-gradient, linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff));
  box-shadow: 0 0 0 4px rgba(8, 196, 223, .18);
}

@media (max-width: 768px) {
  .wa-demo-chips {
    display: none;
  }
}

/* Cuando site-motion.js arma la línea de tiempo de scroll, pasa a superponer
   ambas piezas (teléfono/laptop) para poder hacer crossfade entre ellas. Sin
   JS (o con prefers-reduced-motion) quedan apiladas en el flujo normal, cada
   una perfectamente visible — nunca dependen del scroll para poder verse. */
.wa-demo-stage.is-animated {
  aspect-ratio: 1024 / 1536;
}

.wa-demo-stage.is-animated .wa-demo-stage-item {
  position: absolute;
  inset: 0;
  align-items: center;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 980 / 645;
  filter: drop-shadow(0 30px 60px rgba(5, 12, 24, .3));
}

/* En desktop la laptop es landscape dentro de una caja vertical (la del
   teléfono), así que queda chica y con mucho aire arriba y abajo. La
   agrandamos dejándola desbordar el ancho del stage y la centramos, para
   que llene el hueco vacío sin romper el crossfade teléfono→laptop. */
.wa-demo-stage.is-animated .wa-demo-stage-laptop .laptop-mockup {
  width: 150%;
  max-width: min(820px, 90vw);
  margin: 0 auto;
}

.laptop-mockup-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.laptop-mockup-screen {
  position: absolute;
  top: 6.98%;
  left: 14.8%;
  right: 14.9%;
  bottom: 25.89%;
  overflow: hidden;
  border-radius: 3px;
  background: #f4f6fb;
}

.calendar-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: Inter, Arial, sans-serif;
}

.calendar-app-topbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  background: #fff;
  border-bottom: 1px solid #e4e8f0;
  flex: 0 0 auto;
}

.calendar-app-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8dee8;
}

.calendar-app-title {
  margin-left: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #556;
}

.calendar-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  flex: 0 0 auto;
}

.calendar-app-header strong {
  font-size: 10.5px;
  color: #101820;
}

.calendar-app-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  background: var(--vexa-gradient, linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff));
  color: #fff;
  white-space: nowrap;
}

.calendar-app-rows {
  flex: 1;
  min-height: 0;
  padding: 0 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calendar-app-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8.5px;
  color: #8892a0;
}

.calendar-app-row-time {
  width: 28px;
  flex: 0 0 auto;
}

.calendar-app-row-slot {
  flex: 1;
  height: 16px;
  border-radius: 4px;
  background: #eef1f7;
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar-app-row-slot.is-busy {
  background: #e2e6ef;
}

.calendar-app-row.is-new .calendar-app-row-slot {
  background: var(--vexa-gradient, linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff));
  color: #fff;
  font-weight: 700;
  padding: 0 7px;
  box-shadow: 0 6px 16px rgba(8, 196, 223, .35);
}

.calendar-app-row.is-new .calendar-app-row-slot svg {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
}

@media (max-width: 920px) {
  .wa-demo-section {
    grid-template-columns: 1fr;
  }

  .wa-demo-visual {
    order: -1;
  }
}

.service-card-icon-vexa img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.service-hero-product-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Foto real por rubro en el hero de servicios */
.service-photo{width:100%;max-width:600px;aspect-ratio:3/2;object-fit:cover;border-radius:22px;box-shadow:0 40px 80px -20px rgba(5,12,24,.45);border:1px solid rgba(255,255,255,.55);display:block;margin:0 0 0 auto}
@media (max-width:900px){.service-photo{margin:0 auto;max-width:520px}}

/* Confirmación de suscripción: procesando */
.confirmation-processing{display:inline-flex;align-items:center;gap:10px;font-size:15px;color:#5a6a84;font-weight:600}
.confirmation-spinner{width:20px;height:20px;border:3px solid rgba(99,102,241,.25);border-top-color:#6366f1;border-radius:50%;animation:confspin .8s linear infinite;flex:0 0 auto}
@keyframes confspin{to{transform:rotate(360deg)}}

/* Registro con Google conectado (suscribirse.php carga site.css) */
.checkout-google-connected{display:flex;align-items:center;gap:12px;background:#f0f6ff;border:1px solid #cfe0ff;border-radius:12px;padding:12px 14px;margin-bottom:6px}
.checkout-google-connected svg{width:22px!important;height:22px!important;flex:0 0 auto}
.checkout-google-connected b{display:block;font-size:14px;color:#0f172a}
.checkout-google-connected span{font-size:13px;color:#5a6a84;word-break:break-word}

/* ===== Sub-página de servicio: sección "Todo en uno" (features All-In-One) ===== */
.service-features{max-width:1160px;margin:0 auto;padding:20px 24px 8px}
.service-features-head{max-width:720px;margin:0 auto 34px;text-align:center}
.service-features-head h2{font-size:clamp(26px,4vw,40px);font-weight:800;line-height:1.1;margin:8px 0 12px;letter-spacing:-.01em}
.service-features-head p{color:var(--muted);font-size:16px;line-height:1.7;margin:0}
.service-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.svc-feature{position:relative;background:var(--surface,#fff);border:1px solid var(--line,#e6e9f0);border-radius:18px;padding:24px 22px;
  box-shadow:0 10px 30px -22px rgba(16,24,40,.35);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;overflow:hidden}
.svc-feature::before{content:"";position:absolute;inset:0 0 auto 0;height:3px;background:linear-gradient(90deg,#118cff,#8b5cf6,#ec4899);opacity:0;transition:opacity .2s ease}
.svc-feature:hover{transform:translateY(-4px);box-shadow:0 22px 44px -26px rgba(16,24,40,.5);border-color:#d3d9e6}
.svc-feature:hover::before{opacity:1}
.svc-feature-ic{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:14px;font-size:24px;
  background:linear-gradient(135deg,rgba(17,140,255,.14),rgba(139,92,246,.14));border:1px solid rgba(139,92,246,.18);margin-bottom:14px}
.svc-feature h3{font-size:17px;font-weight:800;line-height:1.25;margin:0 0 7px;letter-spacing:-.01em}
.svc-feature p{color:var(--muted);font-size:13.5px;line-height:1.6;margin:0}
@media (max-width:900px){ .service-features-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:560px){ .service-features-grid{grid-template-columns:1fr} .service-features{padding:16px 18px} }

/* ===== Minichat Vexa — restyle premium ===== */
.vexa-chat-panel{width:min(384px,calc(100vw - 28px));border-radius:20px;
  background:linear-gradient(180deg,#111b2b 0%,#0a111d 100%);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 44px 90px -26px rgba(3,10,24,.72), inset 0 1px 0 rgba(255,255,255,.05)}
.vexa-chat-panel-header{padding:15px 16px;position:relative;box-shadow:0 10px 26px -16px rgba(17,140,255,.7)}
.vexa-chat-panel-header strong{font-weight:800;letter-spacing:-.01em;font-size:14.5px}
.vexa-chat-panel-avatar{width:38px;height:38px;box-shadow:0 4px 14px rgba(0,0,0,.3)}
.vexa-chat-panel-body{padding:16px;gap:10px;background:transparent;
  background-image:radial-gradient(130% 70% at 100% 0,rgba(139,92,246,.12),transparent 62%)}
.vexa-chat-bubble{padding:11px 14px;border-radius:16px;font-size:13.5px;line-height:1.5;box-shadow:0 4px 12px -6px rgba(0,0,0,.5)}
.vexa-chat-bubble.is-bot{background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.1);color:#eaf1fc;border-top-left-radius:5px}
.vexa-chat-bubble.is-user{border-top-right-radius:5px}
.vexa-chat-panel-form{padding:12px;background:rgba(255,255,255,.025);border-top:1px solid rgba(255,255,255,.08)}
.vexa-chat-panel-form input{padding:11px 14px;border-radius:12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.13);transition:border-color .15s,background .15s}
.vexa-chat-panel-form input:focus{outline:none;border-color:rgba(17,140,255,.6);background:rgba(255,255,255,.09)}
.vexa-chat-panel-form button{width:40px;height:40px;border-radius:12px;box-shadow:0 8px 20px -8px rgba(17,140,255,.7)}
.vexa-chat-launcher{width:60px;height:60px}
/* Avatar del minichat: logo más grande y ópticamente centrado (compensa la cola de la V) */
.vexa-chat-panel-avatar{background:#fff}
.vexa-chat-panel-avatar img{width:34px;height:34px;object-fit:contain;object-position:center}

/* ==========================================================================
   MÓVIL — que no se acerque la pantalla al escribir
   Safari en iPhone/iPad hace zoom automático cuando el campo enfocado tiene
   menos de 16px, y después la pantalla queda corrida y deformada. Llevando los
   campos a 16px en pantallas táctiles el zoom no se dispara. Se resuelve así y
   no con maximum-scale=1 en el viewport, porque eso le saca a la persona la
   posibilidad de agrandar con los dedos.
   ========================================================================== */
@media (max-width:1024px), (pointer:coarse) {
  input[type="text"], input[type="email"], input[type="password"], input[type="search"],
  input[type="tel"], input[type="url"], input[type="number"], input[type="date"],
  input[type="datetime-local"], input[type="time"], input[type="month"], input[type="week"],
  input:not([type]), select, textarea {
    font-size: 16px !important;
  }
}
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Elegir cómo pagar: mensual o anual (checkout) */
.ciclo-switch{display:flex;gap:6px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  border-radius:12px;padding:4px;margin:14px 0 10px}
.ciclo-switch a{flex:1;text-align:center;padding:9px 10px;border-radius:9px;text-decoration:none;
  font-size:13px;font-weight:700;color:rgba(255,255,255,.72);transition:background .15s ease,color .15s ease}
.ciclo-switch a:hover{color:#fff}
.ciclo-switch a.is-on{background:linear-gradient(135deg,#08c4df,#6366f1);color:#fff;box-shadow:0 6px 16px -8px rgba(99,102,241,.8)}
.ciclo-switch b{display:block;font-size:10.5px;font-weight:800;letter-spacing:.02em;opacity:.9;margin-top:1px}
.ciclo-detalle{margin:0 0 4px;font-size:12.5px;line-height:1.55;color:rgba(255,255,255,.72)}
.ciclo-detalle strong{color:#fff}

/* Alta en pasos: solo se ve el bloque activo */
.checkout-paso{display:none}
.checkout-paso.is-active{display:block;animation:pasoIn .22s ease both}
@keyframes pasoIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.checkout-paso-nav{display:flex;gap:10px;align-items:center;margin:22px 0 4px}
.checkout-next,.checkout-back{flex:1;padding:13px 18px;border-radius:12px;font-size:14.5px;font-weight:700;
  cursor:pointer;font-family:inherit;transition:transform .12s ease,filter .15s ease,background .15s ease}
.checkout-next{border:none;color:#fff;background:linear-gradient(135deg,#08c4df,#6366f1 60%,#7a2cff);
  box-shadow:0 10px 24px -10px rgba(99,102,241,.7)}
.checkout-next:hover{transform:translateY(-1px);filter:brightness(1.06)}
.checkout-back{flex:0 0 auto;background:#f1f5f9;border:1px solid #e2e8f0;color:#475569}
.checkout-back:hover{background:#e2e8f0;color:#0b1c34}
.checkout-steps span.is-done{opacity:.85}
.checkout-steps span.is-done i{background:linear-gradient(135deg,#08c4df,#6366f1);color:#fff}
/* Resumen previo al pago */
.checkout-resumen{margin-bottom:18px}
.checkout-resumen-fila{display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:11px 0;border-bottom:1px solid rgba(15,23,42,.08);font-size:13.5px}
.checkout-resumen-fila span{color:#64748b}
.checkout-resumen-fila b{color:#0b1c34;text-align:right;word-break:break-word}
.checkout-resumen{background:#f8fafc;border:1px solid #eef2f7;border-radius:14px;padding:4px 16px 12px}
.checkout-resumen .checkout-form-section{padding-top:14px}
/* Qué desbloquea el rubro elegido */
/* Celeste OSCURO, no claro: esta tarjeta del checkout es blanca y el celeste
   pálido que usa el resto del sitio —pensado para fondo oscuro— acá quedaba
   ilegible. Mismo problema que ya se había arreglado en .checkout-vendedor. */
.rubro-unlock{margin:2px 0 6px;padding:14px 16px;border-radius:12px;font-size:13.2px;line-height:1.6;
  color:#0d4f5c;background:#e8f8fb;border:1px solid #b6e4ee;border-left:3px solid #0891a8}
.rubro-unlock::before{content:"Qué se activa con este rubro";display:block;margin-bottom:6px;
  font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:#0891a8}
.rubro-unlock b{color:#083c46}

/* Vendedor que trajo la venta. Confirmación cuando vino por el link; campo
   opcional cuando lo atendieron por teléfono y entró por su cuenta. */
/* Verde oscuro, no claro: esta tarjeta del checkout es blanca y el verde pálido
   que usa el resto del sitio (fondo oscuro) acá no se leía. */
.checkout-vendedor{margin:8px 0 4px;font-size:13px;line-height:1.55;color:#0f6b3d;
  background:rgba(34,197,94,.10);border:1px solid rgba(34,197,94,.32);border-radius:10px;padding:10px 12px}
.checkout-vendedor b{color:#0a4f2c}
.checkout-opcional{margin-left:6px;font-size:11px;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;opacity:.55}

/* ---- Indicador de pasos del alta: círculos redondos, verde al completar ---- */
.checkout-steps{flex-wrap:wrap;gap:8px 12px}
.checkout-steps span{gap:8px}
.checkout-steps span i{
  width:26px;height:26px;min-width:26px;min-height:26px;flex:0 0 26px;
  border-radius:9999px;aspect-ratio:1/1;box-sizing:border-box;
  font-size:11.5px;font-weight:800;line-height:1;
  transition:background .18s ease,color .18s ease,transform .18s ease;
}
/* Paso ya completado: verde con tilde en lugar del número */
.checkout-steps span.is-done i{
  background:#16a34a;color:#fff;font-size:0;position:relative;transform:scale(1.02);
}
.checkout-steps span.is-done i::after{
  content:"✓";font-size:13px;line-height:1;color:#fff;
}
.checkout-steps span.is-done{color:#16a34a}
.checkout-steps span:not(:last-child)::after{width:14px}
@media (max-width:520px){
  .checkout-steps{font-size:11px}
  .checkout-steps span:not(:last-child)::after{display:none}
}

/* Aire entre el título de cada bloque y su primer campo */
.checkout-paso > .checkout-form-section:first-child{margin-top:0;padding-top:0;border-top:none}
.checkout-paso .checkout-form-section{margin:0 0 12px;padding-top:0;border-top:none}
.checkout-paso label{margin-bottom:14px}
.checkout-paso .checkout-form-row label{margin-bottom:0}

/* Los cuatro pasos entran en UNA sola línea: sin cortes ni saltos. En pantallas
   angostas quedan los círculos y el nombre solo del paso actual. */
.checkout-steps{flex-wrap:nowrap;gap:4px;justify-content:space-between}
.checkout-steps span{gap:6px;font-size:11.5px;white-space:nowrap;min-width:0}
.checkout-steps span em{font-style:normal;overflow:hidden;text-overflow:ellipsis}
.checkout-steps span i{width:24px;height:24px;min-width:24px;min-height:24px;flex:0 0 24px;font-size:11px}
.checkout-steps span:not(:last-child)::after{width:8px;flex:0 0 8px}
@media (max-width:620px){
  .checkout-steps span:not(.is-active) em{display:none}
  .checkout-steps span:not(:last-child)::after{width:12px;flex:0 0 12px}
}

/* Con el formulario más ancho, los nombres de los pasos entran completos */
.checkout-steps span em{overflow:visible;text-overflow:clip}
.checkout-steps{gap:6px}

/* Aire antes de cada subtítulo que no sea el primero del paso */
.checkout-paso .checkout-form-section{margin-top:20px}
.checkout-paso > .checkout-form-section:first-child{margin-top:0}

/* Código de acuerdo en el checkout. Plegado por defecto: la mayoría no tiene
   uno, y un campo abierto que dice "descuento" invita a probar suerte. */
.checkout-codigo{margin:14px 0 4px;padding:12px 14px;border:1px dashed #d5dced;border-radius:11px;background:#fafbfe}
.checkout-codigo summary{cursor:pointer;font-size:13.5px;font-weight:600;color:#4a5670;list-style:none}
.checkout-codigo summary::-webkit-details-marker{display:none}
.checkout-codigo summary::before{content:"+ ";font-weight:700;color:#2f6bff}
.checkout-codigo[open] summary::before{content:"− "}
.checkout-codigo label{display:block;margin-top:12px}
.checkout-codigo input{text-transform:uppercase;letter-spacing:.08em;font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
.checkout-codigo-ok{margin:10px 0 0;padding:10px 12px;border-radius:9px;font-size:13.2px;line-height:1.5;
  background:#e9f9ef;border-left:3px solid #12a150;color:#14663a}
.checkout-codigo-mal{margin:10px 0 0;padding:10px 12px;border-radius:9px;font-size:13.2px;line-height:1.5;
  background:#fff1ef;border-left:3px solid #c0392b;color:#a03024}

/* Precio con código promocional aplicado. El número GRANDE es lo que se va a
   cobrar: mostrar el de lista en grande y el bonificado en chico es la forma
   más rápida de que alguien abandone creyendo que el descuento no entró. */
.checkout-plan-price.es-bonificado{display:flex;align-items:baseline;flex-wrap:wrap;gap:8px}
.checkout-plan-price.es-bonificado s{font-size:20px;font-weight:700;color:rgba(255,255,255,.42);text-decoration-thickness:2px}
.checkout-bonif{margin:10px 0 0;padding:12px 14px;border-radius:11px;font-size:12.8px;line-height:1.6;
  background:rgba(34,197,94,.12);border:1px solid rgba(34,197,94,.3);color:#bff3d2}
.checkout-bonif b{display:block;margin-bottom:3px;color:#7ef0a8}
