/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:   #5A45FF;
  --primary-lt:#7B6BFF;
  --primary-dk:#3D2ECC;
  --dark:      #0B0D1B;
  --dark2:     #131629;
  --dark3:     #1c2040;
  --white:     #ffffff;
  --off-white: #F7FAF8;
  --body-txt:  #6c757d;
  --heading:   #2B2D42;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--body-txt);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(123,107,255,.55);
  outline-offset: 3px;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#mainNav {
  background: #0d0f20;
  padding: .8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -.5px;
  text-decoration: none;
}

#mainNav .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .85rem !important;
  transition: color .2s;
}
#mainNav .nav-link:hover { color: #fff !important; }

#mainNav .navbar-toggler {
  border-radius: 8px;
  padding: .55rem .65rem;
}

#mainNav .navbar-toggler:focus {
  box-shadow: 0 0 0 .18rem rgba(123,107,255,.35);
}

#mainNav .dropdown-menu {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .5rem;
  min-width: 180px;
}
#mainNav .dropdown-item {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  border-radius: 6px;
  padding: .45rem .85rem;
}
#mainNav .dropdown-item:hover {
  background: rgba(90,69,255,.15);
  color: #fff;
}

@media (min-width: 992px) {
  #mainNav .container {
    align-items: center;
    gap: 1rem;
  }
  #mainNav .navbar-collapse {
    flex-grow: 0;
  }
  #mainNav .navbar-nav {
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  #mainNav .nav-link {
    padding: .4rem 0 !important;
    border-radius: 0;
  }
  #mainNav .nav-link:hover {
    background: transparent;
  }
}

.btn-wa {
  background: #1c1f38;
  border: 1.5px solid #2a2e50;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .45rem 1.3rem;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.btn-wa:hover { border-color: #3a3f6a; color: #fff; background: #242748; }

.btn-cta-nav {
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .45rem 1.2rem;
  transition: background .2s;
  text-decoration: none;
}
.btn-cta-nav:hover { background: var(--primary-lt); color: #fff; }

#inicio,
#soluciones,
#proceso,
#contacto {
  scroll-margin-top: 82px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: #0d0f20;
  padding: clamp(88px, 12vh, 126px) 0 132px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: calc(100svh - 72px);
}

.hero-blob-left {
  position: absolute;
  bottom: -60px;
  left: -120px;
  width: 620px;
  pointer-events: none;
}

.hero-blob-right {
  position: absolute;
  top: -80px;
  right: -140px;
  width: 480px;
  pointer-events: none;
  opacity: .55;
}

.dot-grid {
  position: absolute;
  pointer-events: none;
}
.dot-grid.tr {
  top: 120px;
  right: 55px;
  width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(255,255,255,.35) 1.8px, transparent 1.8px);
  background-size: 14px 14px;
}
.dot-grid.bl {
  bottom: 280px;
  left: 55px;
  width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(255,255,255,.22) 2px, transparent 2px);
  background-size: 16px 16px;
}

.hero h1 {
  position: relative;
  top: 18px;
  font-size: clamp(2.45rem, 5.4vw, 5.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-top: 0;
  margin-bottom: 1.55rem;
  letter-spacing: -.5px;
}
.hero h1 .accent { color: var(--primary); }

.dia-text-reveal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  filter: drop-shadow(0 14px 34px rgba(169,124,248,.12));
}

.dia-hero-text {
  font: inherit;
  letter-spacing: inherit;
}

.dia-char {
  display: inline-block;
  background: var(--dia-gradient, linear-gradient(92deg, #A97CF8 0%, #F38CB8 52%, #FDCC92 100%));
  background-size: 280% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(.35em) scale(.96);
}

.dia-text-reveal.is-visible .dia-char {
  animation: diaReveal .46s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(var(--i) * 34ms);
}

@keyframes diaReveal {
  0% {
    opacity: 0;
    transform: translateY(.35em) scale(.96);
    filter: blur(9px);
    color: transparent;
    background: var(--dia-gradient, linear-gradient(92deg, #A97CF8 0%, #F38CB8 52%, #FDCC92 100%));
    background-size: 280% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
  }
  20% {
    opacity: 1;
    transform: translateY(.08em) scale(.99);
    filter: blur(4px);
    color: transparent;
    background-position: 28% 50%;
  }
  45% {
    opacity: 1;
    transform: translateY(-.025em) scale(1.018);
    filter: blur(0);
    color: transparent;
    background: var(--dia-gradient, linear-gradient(92deg, #A97CF8 0%, #F38CB8 52%, #FDCC92 100%));
    background-size: 280% 100%;
    background-position: 100% 50%;
    -webkit-background-clip: text;
    background-clip: text;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    color: var(--dia-final, #fff);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
  }
}

.hero p.lead {
  position: relative;
  top: 34px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  color: rgba(255,255,255,.68);
  width: fit-content;
  max-width: none;
  margin: 0 auto 1.75rem;
  line-height: 1.8;
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: 12px;
  padding: .85rem 1.8rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-hero-primary:hover { background: var(--primary-lt); color: #fff; transform: translateY(-2px); }

.btn-hero-wa {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 12px;
  padding: .85rem 1.8rem;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-wa:hover { background: rgba(255,255,255,.14); color: #fff; }

.hero-capabilities {
  position: relative;
  top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-capability {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.2rem;
  padding: .46rem .88rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-capability i {
  font-size: .78rem;
  color: rgba(123,107,255,.92);
}

.hero-capability-gemini svg {
  width: .88rem;
  height: .88rem;
  color: rgba(123,107,255,.96);
  flex: 0 0 auto;
}

/* Two overlapping screen mockups */
.hero-ipads {
  position: relative;
  height: 556px;
  max-width: 860px;
  margin: 0 auto -34px;
}

.ipad-mockup {
  position: absolute;
  background: #1a1c2e;
  border-radius: 18px;
  border: 5px solid #252840;
  box-shadow: none;
  overflow: hidden;
}
.ipad-mockup.back {
  width: 360px;
  height: 462px;
  left: 58px;
  bottom: -48px;
  transform: rotate(-1deg);
  z-index: 1;
  border-color: #1e2038;
}
.ipad-mockup.front {
  width: 380px;
  height: 492px;
  right: 86px;
  bottom: -74px;
  transform: rotate(1deg);
  z-index: 2;
  border-color: #2e3158;
}

.ipad-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
}

.ios-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 2px;
  font-size: 8px;
  color: rgba(255,255,255,.7);
  font-family: -apple-system, sans-serif;
  font-weight: 600;
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
}
.ios-statusbar .carrier { letter-spacing: .3px; }
.ios-statusbar .time { font-size: 9px; font-weight: 700; }
.ios-statusbar .batt { display: flex; align-items: center; gap: 3px; }

.ipad-screen-art {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.site-screen {
  width: 100%; height: 100%;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(10,12,26,.92), rgba(10,12,26,.45) 62%),
    radial-gradient(circle at 72% 70%, rgba(255,255,255,.28), transparent 7%),
    linear-gradient(135deg, #0b1028 0%, #111b3a 52%, #050816 100%);
}
.site-screen::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 62px;
  width: 118px;
  height: 132px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(135deg, transparent 0 20%, rgba(255,255,255,.42) 20% 26%, transparent 26% 44%, rgba(255,255,255,.24) 44% 50%, transparent 50%),
    linear-gradient(160deg, #5e6a82 0%, #1a2438 48%, #060913 100%);
  opacity: .92;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.42));
}
.mini-site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.84);
  font-size: 6px;
  font-weight: 700;
}
.mini-site-nav small {
  color: rgba(255,255,255,.58);
  font-size: 5px;
  font-weight: 600;
}
.mini-site-copy {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin: 56px 0 0 24px;
  text-align: left;
}
.mini-site-copy h3 {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 10px;
}
.mini-site-copy p {
  color: rgba(255,255,255,.62);
  font-size: .42rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.mini-site-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 6px;
  padding: 0 12px;
  background: var(--primary);
  color: #fff;
  font-size: .42rem;
  font-weight: 800;
}
.domain-card {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: #fff;
  color: #202536;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
  text-align: left;
}
.domain-card i { color: #6b7280; }
.domain-card strong {
  font-size: 1rem;
  font-weight: 800;
}

.workspace-screen {
  width: 100%; height: 100%;
  background: #f8fafd;
  color: #1d2433;
}
.workspace-body {
  display: grid;
  grid-template-columns: 44px 158px 1fr;
  height: 100%;
}
.workspace-rail {
  background: #e9eff8;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  padding-top: 19px;
  color: #283245;
  font-size: .76rem;
  position: relative;
}
.workspace-rail .mail-badge {
  min-width: 24px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d93025;
  color: #fff;
  font-size: .48rem;
  font-weight: 900;
  margin-top: 4px;
}
.workspace-sidebar {
  padding: 16px 8px 14px 10px;
  background: #f3f7ff;
  display: grid;
  align-content: start;
  gap: 6px;
  text-align: left;
}
.gmail-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: #4b5563;
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.gmail-brand i { color: #ea4335; font-size: 1.2rem; }
.workspace-sidebar button {
  border: 0;
  border-radius: 13px;
  min-height: 44px;
  background: #b7e3ff;
  color: #142033;
  font-size: .64rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  margin-bottom: 7px;
}
.workspace-sidebar span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 23px;
  border-radius: 999px;
  padding: 0 8px 0 10px;
  color: #3f4756;
  font-size: .56rem;
  font-weight: 500;
}
.workspace-sidebar span.active {
  background: #cfe1ff;
  color: #182235;
  font-weight: 800;
}
.workspace-sidebar span strong,
.workspace-sidebar span small {
  margin-left: auto;
  font-size: .48rem;
  font-weight: 800;
}
.workspace-sidebar span.nested { padding-left: 22px; font-weight: 800; }
.gmail-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 7px 2px;
  color: #202633;
  font-size: .62rem;
  font-weight: 700;
}
.workspace-content {
  padding: 12px 0 0;
  text-align: left;
  background: #fff;
  border-left: 1px solid #edf1f7;
  overflow: hidden;
}
.gmail-search {
  height: 38px;
  margin: 0 12px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  background: #eef3fb;
  color: #5d6678;
  font-size: .64rem;
  font-weight: 600;
}
.gmail-toolbar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  color: #687386;
  border-bottom: 1px solid #eef1f6;
  font-size: .62rem;
}
.gmail-list {
  display: grid;
}
.gmail-list div {
  min-height: 31px;
  display: grid;
  grid-template-columns: 16px 16px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid #edf1f7;
  color: #a0a8b5;
  font-size: .56rem;
}
.gmail-list strong {
  color: #242a36;
  font-size: .58rem;
  font-weight: 800;
}

/* ─── ADMIN CONSOLE MOCKUP ───────────────────────────────────── */
.admin-screen {
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  height: 100%;
  font-family: 'Google Sans', 'Roboto', sans-serif;
  overflow: hidden;
}
.admin-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
  height: 40px;
  flex-shrink: 0;
}
.admin-topbar > .fa-bars {
  font-size: .7rem;
  color: #5f6368;
  cursor: pointer;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .6rem;
  font-weight: 600;
  color: #202124;
  white-space: nowrap;
}
.admin-searchbar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  background: #f1f3f4;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: .52rem;
  color: #80868b;
}
.admin-searchbar .fa-search {
  font-size: .52rem;
  color: #80868b;
}
.admin-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.admin-nav {
  width: 130px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e8eaed;
  padding: 6px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.admin-nav-section {
  display: flex;
  flex-direction: column;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: .55rem;
  color: #5f6368;
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  margin-right: 6px;
}
.admin-nav-item:hover {
  background: #f1f3f4;
}
.admin-nav-item.expanded {
  color: #1a73e8;
  font-weight: 600;
  background: #e8f0fe;
}
.admin-nav-item i {
  font-size: .6rem;
  width: 14px;
  text-align: center;
}
.admin-nav-child {
  padding: 4px 12px 4px 32px;
  font-size: .52rem;
  color: #5f6368;
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  margin-right: 6px;
}
.admin-nav-child:hover {
  background: #f1f3f4;
}
.admin-nav-child.active {
  color: #1a73e8;
  font-weight: 700;
  background: #e8f0fe;
}
.admin-main {
  flex: 1;
  padding: 10px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-page-title {
  font-size: .7rem;
  font-weight: 600;
  color: #202124;
  padding-bottom: 4px;
  border-bottom: 1px solid #e8eaed;
}
.admin-panel-row {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.admin-org-panel {
  width: 120px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .5rem;
  color: #5f6368;
  overflow: hidden;
}
.admin-org-header {
  font-size: .52rem;
  font-weight: 600;
  color: #202124;
  padding-bottom: 4px;
  border-bottom: 1px solid #e8eaed;
}
.admin-radio-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: .48rem;
  color: #5f6368;
  line-height: 1.4;
}
.admin-rdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #bdc1c6;
  flex-shrink: 0;
  margin-top: 1px;
}
.admin-rdot.filled {
  border-color: #1a73e8;
  background: #1a73e8;
  box-shadow: inset 0 0 0 2px #fff;
}
.admin-search-mini {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f3f4;
  border-radius: 12px;
  padding: 3px 7px;
  font-size: .45rem;
  color: #80868b;
}
.admin-tabs {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.admin-tab {
  font-size: .43rem;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #dadce0;
  color: #5f6368;
  white-space: nowrap;
}
.admin-tab.active {
  background: #e8f0fe;
  border-color: #1a73e8;
  color: #1a73e8;
  font-weight: 600;
}
.admin-tree {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}
.admin-tree-parent {
  font-size: .52rem;
  font-weight: 700;
  color: #202124;
  padding: 2px 4px;
}
.admin-tree-child {
  font-size: .48rem;
  color: #5f6368;
  padding: 2px 4px 2px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-tree-child i {
  font-size: .45rem;
  color: #80868b;
}
.admin-tree-child.muted {
  color: #9aa0a6;
}
.admin-users-panel {
  flex: 1;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.admin-users-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .5rem;
  color: #5f6368;
  padding-bottom: 5px;
  border-bottom: 1px solid #e8eaed;
}
.admin-users-toolbar .fa-plus-circle {
  font-size: .65rem;
  cursor: pointer;
}
.admin-user-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 2px;
  border-bottom: 1px solid #f1f3f4;
}
.admin-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-size: .42rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  overflow: hidden;
}
.admin-user-info strong {
  font-size: .5rem;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-user-info span {
  font-size: .44rem;
  color: #80868b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-user-badge {
  font-size: .42rem;
  padding: 2px 5px;
  background: #e8f0fe;
  color: #1a73e8;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── BRANDS ─────────────────────────────────────────────────── */
.brands-section {
  background: var(--white);
  position: relative;
  margin-top: -22px;
  padding: 76px 0 64px;
  text-align: center;
  overflow: visible;
  z-index: 4;
}
.brands-section::before {
  content: '';
  position: absolute;
  left: -12%;
  top: -64px;
  width: 124%;
  height: 148px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white);
  pointer-events: none;
  z-index: 2;
}
.brands-section .container {
  position: relative;
  z-index: 3;
}
.brands-label {
  position: relative;
  top: -18px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 2.8rem;
}
.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #b9b9bd;
  transition: color .22s, transform .22s;
}
.brand-logo:hover {
  color: #777982;
  transform: translateY(-1px);
}
.brand-logo i {
  color: currentColor !important;
  font-size: 1.6rem;
}

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.video-section {
  background: var(--off-white);
  padding: 60px 0 48px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.video-section::after {
  content: '';
  position: absolute;
  left: -16%;
  bottom: -78px;
  width: 132%;
  height: 170px;
  background: var(--off-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

.video-section > .container {
  max-width: 1140px;
  position: relative;
  z-index: 3;
}
.video-section .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-dk);
  display: block;
  margin-bottom: 1rem;
}
.video-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--heading);
  max-width: 540px;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.video-section p {
  color: var(--body-txt);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2rem;
}

.video-player-wrap {
  position: relative;
}
.dot-grid-sm {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(90,69,255,.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
}
.dot-grid-sm.tl { top: -25px; left: -25px; }
.dot-grid-sm.br { bottom: -25px; right: -25px; }

.video-player {
  background: var(--dark);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}
.video-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0a2d 0%, #1a0f4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,69,255,.2) 0%, transparent 60%);
}
.phone-in-video {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 150px;
  background: #fff;
  border-radius: 14px;
  border: 3px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  overflow: hidden;
}
.phone-screen-grad {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #6352d6, #0ea5e9);
}

/* ─── FLASH CARDS (Soluciones) ───────────────────────────────── */
.flashcards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  max-width: 640px;
}

.flash-card {
  position: relative;
  display: block;
  width: 100%;
  height: 266px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  perspective: 1400px;
}

.flash-card__inner {
  display: block;
  position: relative;
  width: 100%;
  height: 266px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.flash-card.is-flipped .flash-card__inner {
  transform: rotateY(180deg);
}

.flash-card:hover:not(.is-flipped) .flash-card__inner {
  transform: translateY(-8px);
}

.flash-card__face {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 24px 26px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flash-card__face--front {
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  border: 1px solid rgba(15,23,42,.06);
  isolation: isolate;
}

.flash-card__face--front::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(91,77,247,.18) 0%, rgba(91,77,247,.06) 38%, rgba(91,77,247,0) 72%);
  opacity: .34;
  animation: flashCardPulse 5.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flashCardPulse {
  0%, 100% {
    opacity: .18;
    transform: translateX(-50%) scale(.88);
  }
  45% {
    opacity: .5;
    transform: translateX(-50%) scale(1.04);
  }
  72% {
    opacity: .24;
    transform: translateX(-50%) scale(.95);
  }
}


.flash-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flash-card__icon i {
  font-size: 1.9rem;
  color: var(--primary);
}

.flash-card__title--front {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  color: #4d536f;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -.02em;
  line-height: 1.18;
  white-space: pre-line;
}

.flash-card__plus {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: inline-block;
  color: rgba(107,114,128,.62);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.flash-card__face--back {
  justify-content: flex-start;
  background: linear-gradient(145deg, #4f46e5, #3b82f6);
  box-shadow: 0 24px 60px rgba(79,70,229,.22);
  color: #fff;
  transform: rotateY(180deg);
}

.flash-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.flash-card__eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .75;
}

.flash-card__back-icon i {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
}

.flash-card__title--back {
  margin: 0 0 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
}

.flash-card__list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 8px;
}

.flash-card__list li {
  color: rgba(255,255,255,.88);
  font-size: .84rem;
  line-height: 1.44;
}

.flash-card:focus-visible { outline: none; }
.flash-card:focus-visible .flash-card__face--front,
.flash-card:focus-visible .flash-card__face--back {
  box-shadow: 0 0 0 3px rgba(90,69,255,.35), 0 24px 65px rgba(15,23,42,.1);
}


/* ─── FEATURES / PROCESO ─────────────────────────────────────── */
/* ─── PROCESO ZIGZAG (dark premium) ─────────────────────────── */
.proceso-section {
  background: #0b0f19;
  margin-top: -30px;
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.proceso-section::before {
  content: none;
}

.proceso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.proceso-layer {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 14px 40px rgba(5, 8, 18, .18));
}

.proceso-layer--mid {
  left: -10%;
  top: 10%;
  width: 96%;
  height: 86%;
  background: rgba(45, 27, 105, .92);
  border-radius: 46% 54% 40% 60% / 40% 28% 72% 60%;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset -10px 0 24px rgba(160, 147, 255, .08);
  transform: rotate(-7deg);
  animation: proceso-drift-mid 19s ease-in-out infinite alternate;
}

.proceso-layer--accent {
  left: -8%;
  bottom: -20%;
  width: 60%;
  height: 58%;
  background: rgba(90, 69, 255, .92);
  border-radius: 50% 50% 0 0 / 90% 84% 0 0;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 10px 28px rgba(182, 175, 255, .11),
    0 0 0 1px rgba(123,107,255,.08);
  animation: proceso-drift-accent 16s ease-in-out infinite alternate;
}

.proceso-layer--veil {
  right: -14%;
  top: -8%;
  width: 48%;
  height: 44%;
  background: rgba(123, 107, 255, .12);
  border-radius: 42% 58% 64% 36% / 48% 44% 56% 52%;
  box-shadow:
    inset 0 0 0 1px rgba(199, 210, 254, .04),
    inset 14px -10px 30px rgba(160, 147, 255, .07);
  animation: proceso-drift-veil 21s ease-in-out infinite alternate;
}

.proceso-dot-grid {
  position: absolute;
  width: 132px;
  height: 132px;
  background-image: radial-gradient(circle, rgba(230, 232, 255, .22) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: .55;
}

.proceso-dot-grid--left {
  left: 7%;
  bottom: 18%;
  animation: proceso-grid-left 18s linear infinite alternate;
}

.proceso-dot-grid--right {
  right: 8%;
  top: 15%;
  animation: proceso-grid-right 20s linear infinite alternate;
}

@keyframes proceso-drift-mid {
  0% { transform: rotate(-7deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-5deg) translate3d(18px, -10px, 0); }
  100% { transform: rotate(-9deg) translate3d(-12px, 14px, 0); }
}

@keyframes proceso-drift-accent {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -8px, 0); }
  100% { transform: translate3d(-10px, 16px, 0); }
}

@keyframes proceso-drift-veil {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-12px, 12px, 0) rotate(2deg); }
  100% { transform: translate3d(10px, -8px, 0) rotate(-1deg); }
}

@keyframes proceso-grid-left {
  0% { transform: translate3d(0, 0, 0); opacity: .42; }
  50% { transform: translate3d(10px, -8px, 0); opacity: .6; }
  100% { transform: translate3d(-8px, 12px, 0); opacity: .45; }
}

@keyframes proceso-grid-right {
  0% { transform: translate3d(0, 0, 0); opacity: .36; }
  50% { transform: translate3d(-12px, 10px, 0); opacity: .58; }
  100% { transform: translate3d(8px, -10px, 0); opacity: .4; }
}

.proceso-header {
  text-align: center;
  margin-top: 3.1rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
  transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}
.proceso-section .section-tag { color: #8b5cf6; }
.proceso-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: rgba(255,255,255,.94);
  margin-bottom: .75rem;
}
.proceso-header .lead {
  color: rgba(226, 232, 255, .58);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1rem;
}
.proceso-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.proceso-step:last-child { margin-bottom: 0; }
.proceso-step--reverse .proceso-step__text { order: 2; }
.proceso-step--reverse .proceso-step__visual { order: 1; }
.proceso-step--audit-immersive {
  display: block;
  margin-bottom: 6rem;
}
.proceso-map-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  --map-parallax-y: 0px;
  --map-stage-y: 0px;
}
.proceso-num--hero {
  position: absolute;
  left: 1%;
  top: 35%;
  margin: 0;
  font-size: clamp(12rem, 26vw, 20rem);
  line-height: .78;
  color: rgba(196,181,253,.11);
  z-index: 1;
  transform: translate3d(0, var(--map-parallax-y), 0);
  will-change: transform;
  pointer-events: none;
}
.proceso-map-copy {
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 420px;
}
.proceso-map-copy h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .9rem;
}
.proceso-map-copy p {
  max-width: 390px;
}
.proceso-map-stage {
  position: absolute;
  inset: 0 0 0 20%;
  z-index: 3;
  transform: translate3d(0, var(--map-stage-y), 0);
  will-change: transform;
}
.proceso-map-stage::before {
  content: '';
  position: absolute;
  left: 13%;
  top: 11%;
  width: 72%;
  height: 76%;
  border-radius: 42% 58% 50% 50% / 34% 42% 58% 66%;
  background:
    linear-gradient(145deg, rgba(90,69,255,.2), rgba(31,41,77,.05)),
    radial-gradient(circle at 28% 24%, rgba(167,139,250,.15), transparent 24%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 28px 60px rgba(8, 11, 20, .18);
  z-index: 0;
}
.proceso-map-stage::after {
  content: '';
  position: absolute;
  right: 3%;
  top: 16%;
  width: 48%;
  height: 62%;
  border-radius: 32px 44px 48px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  clip-path: path("M20 8 C160 0, 320 4, 420 18 C448 22, 460 46, 460 76 L460 300 C460 332, 442 360, 414 364 C308 378, 138 376, 32 360 C10 356, 0 338, 0 312 L0 50 C0 26, 8 10, 20 8 Z");
  opacity: .65;
  z-index: 0;
}
.proceso-map-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.proceso-map-flow__base {
  fill: none;
  stroke: rgba(167,139,250,.16);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.proceso-map-flow__pulse {
  fill: none;
  stroke: url(#proceso-map-stroke);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 4 18;
  animation: proceso-map-flow 6.2s linear infinite;
}
.pulse-delay-1 { animation-delay: 0s; }
.pulse-delay-2 { animation-delay: .7s; }
.pulse-delay-3 { animation-delay: 1.4s; }
.proceso-map-blob {
  position: absolute;
  left: 16%;
  top: 15%;
  width: 36%;
  min-height: 454px;
  border-radius: 45% 55% 50% 50% / 38% 34% 66% 62%;
  background:
    radial-gradient(circle at 24% 26%, rgba(139,92,246,.2), transparent 24%),
    radial-gradient(circle at 68% 66%, rgba(34,211,238,.12), transparent 28%),
    linear-gradient(145deg, rgba(12,17,30,.98), rgba(20,26,42,.95));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 30px 72px rgba(3,7,18,.28);
  overflow: hidden;
  z-index: 2;
  animation: proceso-map-blob-float 9s ease-in-out infinite;
}
.proceso-map-blob::before {
  content: '';
  position: absolute;
  inset: 12% 16% 18% 14%;
  border-radius: 43% 57% 48% 52% / 34% 42% 58% 66%;
  border: 1px solid rgba(196,181,253,.06);
}
.proceso-map-console {
  position: absolute;
  left: 14%;
  right: 12%;
  top: 17%;
  display: grid;
  gap: .95rem;
}
.proceso-map-console__line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(226,232,255,.74);
  min-height: 1.2em;
  text-shadow: 0 0 18px rgba(34,211,238,.08);
}
.proceso-map-console__line::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 5px;
  vertical-align: -2px;
  background: rgba(125,211,252,.8);
  opacity: 0;
  animation: proceso-map-caret 1s step-end infinite;
}
.proceso-map-console__line.is-typing::after {
  opacity: 1;
}
.proceso-map-core {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.proceso-map-core__halo {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,.16);
  box-shadow: 0 0 0 20px rgba(90,69,255,.05);
  animation: proceso-map-halo 8.4s ease-in-out infinite;
}
.proceso-map-core__chip {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(90,69,255,.96), rgba(34,211,238,.92));
  box-shadow:
    0 0 0 10px rgba(90,69,255,.08),
    0 0 48px rgba(90,69,255,.28);
}
.proceso-map-core__chip i {
  color: #eef2ff;
  font-size: 1.38rem;
}
.proceso-map-core__label {
  position: relative;
  z-index: 1;
  color: rgba(238,242,255,.86);
  font-size: .94rem;
  font-weight: 700;
}
.proceso-map-cards {
  position: absolute;
  right: 2%;
  top: 12%;
  width: 46%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  z-index: 4;
}
.proceso-map-cards::before {
  content: '';
  position: absolute;
  inset: -6% -4% -4% -18%;
  border-radius: 44px 54px 52px 46px;
  background:
    linear-gradient(145deg, rgba(90,69,255,.13), rgba(26, 33, 54, .04)),
    radial-gradient(circle at 6% 50%, rgba(90,69,255,.18), transparent 24%);
  z-index: -1;
  clip-path: path("M110 10 C236 -8, 454 4, 566 40 C596 50, 608 74, 608 112 L608 470 C608 504, 590 532, 558 540 C438 568, 218 570, 70 556 C26 552, 0 518, 0 474 L0 154 C0 94, 38 36, 110 10 Z");
}
.proceso-map-card {
  position: relative;
  min-height: 152px;
  padding: 1.25rem 1.2rem;
  border-radius: 24px 30px 28px 24px;
  background:
    linear-gradient(180deg, rgba(21, 28, 44, .82), rgba(16, 22, 38, .76)),
    radial-gradient(circle at 14% 18%, rgba(139,92,246,.1), transparent 26%);
  border: 1px solid rgba(255,255,255,.05);
  box-shadow:
    0 18px 36px rgba(3,7,18,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: proceso-map-card-float 8.2s ease-in-out infinite;
}
.proceso-map-card--workspace {
  transform: translateY(-22px);
  border-top-left-radius: 36px;
  animation-delay: .2s;
}
.proceso-map-card--sheets {
  transform: translateY(8px);
  border-top-right-radius: 34px;
  animation-delay: 1.1s;
}
.proceso-map-card--whatsapp {
  transform: translateY(-2px);
  border-bottom-left-radius: 32px;
  animation-delay: .8s;
}
.proceso-map-card--erp {
  transform: translateY(28px);
  border-bottom-right-radius: 38px;
  animation-delay: 1.6s;
}
.proceso-map-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
}
.proceso-map-card__icon i { font-size: 1.12rem; }
.proceso-map-card--workspace .proceso-map-card__icon i { color: #8b5cf6; }
.proceso-map-card--sheets .proceso-map-card__icon i { color: #c4b5fd; }
.proceso-map-card--whatsapp .proceso-map-card__icon i { color: #22c55e; }
.proceso-map-card--erp .proceso-map-card__icon i { color: #22d3ee; }
.proceso-map-card__eyebrow {
  color: rgba(196,181,253,.72);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proceso-map-card h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.28;
}
.proceso-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: .9;
  color: rgba(196,181,253,.22);
  display: block;
  margin-bottom: .75rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -4px;
}
.proceso-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(90,69,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.proceso-icon-wrap i { font-size: 1.3rem; color: #a78bfa; }
.proceso-step__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.proceso-step__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  margin: 0;
  max-width: 420px;
}
.proceso-visual-wrap {
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(199,210,254,.1);
  box-shadow:
    0 10px 60px rgba(8,11,20,.32),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.02);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.proceso-visual-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.proceso-audit-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(260px, .95fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 420px;
}
.proceso-audit-blob {
  position: relative;
  min-height: 390px;
  padding: 20px 0 24px 8px;
}
.proceso-audit-blob-surface {
  position: relative;
  min-height: 390px;
  border-radius: 44% 56% 52% 48% / 38% 34% 66% 62%;
  background:
    radial-gradient(circle at 28% 28%, rgba(139, 92, 246, .18), transparent 24%),
    radial-gradient(circle at 62% 60%, rgba(34, 211, 238, .1), transparent 28%),
    linear-gradient(145deg, rgba(12, 17, 30, .98), rgba(18, 24, 40, .94));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 34px 80px rgba(3, 7, 18, .26);
  overflow: hidden;
}
.proceso-audit-blob-surface::before {
  content: '';
  position: absolute;
  inset: 14% 18% 18% 14%;
  border-radius: 42% 58% 48% 52% / 34% 42% 58% 66%;
  border: 1px solid rgba(196, 181, 253, .06);
}
.proceso-audit-blob-surface::after {
  content: '';
  position: absolute;
  inset: auto 14% 18% auto;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 69, 255, .28), rgba(90, 69, 255, 0));
  filter: blur(12px);
}
.proceso-audit-code {
  position: absolute;
  left: 12%;
  right: 12%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(219, 228, 255, .34);
  white-space: nowrap;
}
.proceso-audit-code--top { top: 18%; }
.proceso-audit-code--mid { top: 30%; }
.proceso-audit-code--bottom { bottom: 16%; }
.proceso-audit-cluster {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.proceso-audit-cluster__ring {
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, .14);
  box-shadow: 0 0 0 18px rgba(90, 69, 255, .05);
  animation: audit-cluster-ring 8.8s ease-in-out infinite;
}
.proceso-audit-cluster__core {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(90, 69, 255, .94), rgba(34, 211, 238, .9));
  box-shadow:
    0 0 0 10px rgba(90, 69, 255, .08),
    0 0 48px rgba(90, 69, 255, .3);
}
.proceso-audit-cluster__core i {
  color: #eef2ff;
  font-size: 1.35rem;
}
.proceso-audit-cluster__label {
  position: relative;
  z-index: 1;
  color: rgba(233, 238, 255, .86);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.proceso-audit-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.audit-link {
  fill: none;
  stroke: url(#audit-link-gradient);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 4 10;
  opacity: .8;
  animation: audit-link-flow 6.2s linear infinite;
}
.audit-link--two { animation-delay: .6s; }
.audit-link--three { animation-delay: 1.2s; }
.audit-link--four { animation-delay: 1.8s; }
.audit-link-dot {
  fill: #8b5cf6;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, .6));
  animation: audit-link-dot-pulse 4.4s ease-in-out infinite;
}
.audit-link-dot--two { animation-delay: .5s; }
.audit-link-dot--three { animation-delay: 1.1s; }
.audit-link-dot--four { animation-delay: 1.6s; }
.proceso-audit-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.proceso-audit-card {
  min-height: 138px;
  padding: 1.15rem 1.1rem;
  border-radius: 20px;
  background: rgba(20, 27, 43, .74);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 16px 34px rgba(3, 7, 18, .18),
    inset 0 1px 0 rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.proceso-audit-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
}
.proceso-audit-card__icon i {
  font-size: 1.12rem;
}
.proceso-audit-card--communication .proceso-audit-card__icon i { color: #8b5cf6; }
.proceso-audit-card--data .proceso-audit-card__icon i { color: #c4b5fd; }
.proceso-audit-card--channels .proceso-audit-card__icon i { color: #22c55e; }
.proceso-audit-card--operations .proceso-audit-card__icon i { color: #22d3ee; }
.proceso-audit-card__eyebrow {
  color: rgba(196, 181, 253, .7);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proceso-audit-card h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.proceso-visual-float {
  animation: proc-float 6s ease-in-out infinite;
}
.proceso-visual-wrap--network {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.proceso-network {
  width: min(100%, 560px);
  height: auto;
  display: block;
  overflow: visible;
}
.network-link-base path {
  fill: none;
  stroke: rgba(196, 181, 253, .18);
  stroke-width: 1.7;
  stroke-linecap: round;
}
.network-link-flow path {
  fill: none;
  stroke: rgba(196, 181, 253, .9);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 2 16;
  animation: proc-network-flow 2.2s linear infinite;
}
.flow-delay-1 { animation-delay: 0s; }
.flow-delay-2 { animation-delay: .45s; }
.flow-delay-3 { animation-delay: .9s; }
.network-core-label,
.network-node-label {
  font-family: 'Poppins', sans-serif;
}
.network-core-label {
  fill: rgba(238, 242, 255, .9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.network-node-label {
  fill: rgba(216, 206, 255, .72);
  font-size: 13px;
  font-weight: 600;
}
.network-core-float {
  animation: proc-network-core-float 7.4s ease-in-out infinite;
  transform-origin: 286px 176px;
}
.network-node-float {
  transform-box: fill-box;
  transform-origin: center;
}
.network-node-float--one {
  animation: proc-network-node-float-1 6.4s ease-in-out infinite;
}
.network-node-float--two {
  animation: proc-network-node-float-2 7.2s ease-in-out infinite;
}
.network-node-float--three {
  animation: proc-network-node-float-3 6.8s ease-in-out infinite;
}
.network-orbit {
  transform-origin: 286px 176px;
}
.network-orbit--outer {
  animation: proc-network-orbit 26s linear infinite;
}
.network-orbit--inner {
  animation: proc-network-orbit-reverse 18s linear infinite;
}
.network-scan-beam {
  opacity: .42;
  mix-blend-mode: screen;
  animation: proc-network-scan 7s ease-in-out infinite;
}
.audit-node {
  animation: proc-network-audit 7s ease-in-out infinite;
}
.audit-node--1 { animation-delay: .85s; }
.audit-node--2 { animation-delay: 1.8s; }
.audit-node--3 { animation-delay: 3.1s; }
.data-line {
  animation: proc-dash-flow 1.8s linear infinite;
}
.glow-ring,
.glow-ring-delay {
  transform-box: fill-box;
  transform-origin: center;
}
.glow-ring { animation: proc-glow-pulse 2.5s ease-in-out infinite; }
.glow-ring-delay { animation: proc-glow-pulse 2.5s ease-in-out infinite .4s; }
@keyframes proc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes proc-dash-flow {
  to { stroke-dashoffset: -22; }
}
@keyframes audit-cluster-ring {
  0%, 100% {
    transform: scale(.94);
    opacity: .7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes audit-link-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -84; }
}
@keyframes audit-link-dot-pulse {
  0%, 100% {
    opacity: .65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}
@keyframes proc-network-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -72; }
}
@keyframes proc-network-core-float {
  0%, 100% { transform: translate3d(0, -2px, 0); }
  50% { transform: translate3d(0, 8px, 0); }
}
@keyframes proc-network-node-float-1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes proc-network-node-float-2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 7px, 0); }
}
@keyframes proc-network-node-float-3 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}
@keyframes proc-network-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes proc-network-orbit-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes proc-network-scan {
  0%, 14% {
    opacity: 0;
    transform: translateX(0);
  }
  26% {
    opacity: .46;
  }
  56% {
    opacity: .38;
  }
  72% {
    opacity: 0;
    transform: translateX(560px);
  }
  100% {
    opacity: 0;
    transform: translateX(560px);
  }
}
@keyframes proc-network-audit {
  0%, 12%, 100% {
    opacity: .7;
  }
  18%, 24% {
    opacity: 1;
  }
}
@keyframes proc-glow-pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .72; transform: scale(1.12); }
}
@keyframes proceso-map-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -96; }
}
@keyframes proceso-map-blob-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes proceso-map-halo {
  0%, 100% { transform: scale(.94); opacity: .72; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes proceso-map-caret {
  0%, 49% { opacity: 0; }
  50%, 100% { opacity: 1; }
}
@keyframes proceso-map-card-float {
  0%, 100% { box-shadow: 0 18px 36px rgba(3,7,18,.18), inset 0 1px 0 rgba(255,255,255,.04); }
  50% { box-shadow: 0 28px 46px rgba(3,7,18,.22), 0 0 22px rgba(90,69,255,.08), inset 0 1px 0 rgba(255,255,255,.05); }
}
@media (max-width: 767px) {
  .video-section::after {
    left: -24%;
    bottom: -56px;
    width: 148%;
    height: 108px;
  }
  .proceso-section {
    margin-top: -24px;
    padding: 98px 0 72px;
  }
  .proceso-audit-board {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    min-height: auto;
  }
  .proceso-audit-blob {
    min-height: 290px;
    padding: 0;
  }
  .proceso-audit-blob-surface {
    min-height: 290px;
  }
  .proceso-audit-code {
    font-size: .66rem;
    white-space: normal;
  }
  .proceso-audit-links {
    display: none;
  }
  .proceso-audit-cards {
    grid-template-columns: 1fr 1fr;
  }
  .proceso-audit-card {
    min-height: 126px;
    padding: 1rem;
  }
  .proceso-layer--mid {
    left: -24%;
    top: 12%;
    width: 138%;
    height: 82%;
  }
  .proceso-layer--accent {
    left: -30%;
    bottom: -16%;
    width: 88%;
    height: 36%;
  }
  .proceso-layer--veil {
    right: -34%;
    top: -6%;
    width: 74%;
    height: 28%;
  }
  .proceso-dot-grid {
    width: 92px;
    height: 92px;
    background-size: 14px 14px;
  }
  .proceso-dot-grid--left {
    left: 4%;
    bottom: 16%;
  }
  .proceso-dot-grid--right {
    right: 4%;
    top: 12%;
  }
  .proceso-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .proceso-step--audit-immersive {
    margin-bottom: 4.25rem;
  }
  .proceso-map-shell {
    min-height: auto;
    display: grid;
    gap: 1.6rem;
  }
  .proceso-num--hero {
    left: 2%;
    top: 26%;
    font-size: 7.2rem;
  }
  .proceso-map-copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding-top: 6.5rem;
    max-width: none;
  }
  .proceso-map-stage {
    position: relative;
    inset: auto;
    min-height: auto;
    transform: none;
  }
  .proceso-map-stage::before {
    left: 4%;
    right: auto;
    top: 8%;
    width: 92%;
    height: 84%;
  }
  .proceso-map-blob {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 280px;
  }
  .proceso-map-console {
    left: 12%;
    right: 10%;
    top: 16%;
    gap: .65rem;
  }
  .proceso-map-console__line {
    font-size: .68rem;
    white-space: normal;
  }
  .proceso-map-core {
    bottom: 12%;
  }
  .proceso-map-cards {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    gap: 14px;
  }
  .proceso-map-cards::before {
    inset: -4% -2% -3% -2%;
    clip-path: none;
    border-radius: 28px;
  }
  .proceso-map-card,
  .proceso-map-card--workspace,
  .proceso-map-card--sheets,
  .proceso-map-card--whatsapp,
  .proceso-map-card--erp {
    min-height: 126px;
    transform: none;
  }
  .proceso-step--reverse .proceso-step__text { order: 1; }
  .proceso-step--reverse .proceso-step__visual { order: 2; }
  .proceso-num { font-size: 3.5rem; }
  .proceso-header { margin-bottom: 3rem; }
  .proceso-header { margin-top: 2rem; }
  .proceso-network {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

/* ─── STYLISH / POR QUÉ VANTHAR (dark) ──────────────────────── */
.stylish-section {
  background: var(--dark2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stylish-section .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-lt);
  display: block;
  margin-bottom: 1rem;
}
.stylish-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}
.stylish-section p {
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-bottom: .9rem;
  line-height: 1.6;
}
.check-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Dashboard/iPad mockup */
.ipad-pencil-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ipad-large {
  width: 340px;
  height: 440px;
  background: #111;
  border-radius: 24px;
  border: 7px solid #222;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
}
.ipad-large-screen {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 160, 255, .5), transparent 30%),
    linear-gradient(145deg, #7373e6 0%, #9963bd 46%, #ec4b68 100%);
  display: flex; flex-direction: column;
  padding: 14px;
}
.ipad-large-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.ipad-large-topbar span {
  width: 20px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.5);
}
.ipad-large-topbar span:nth-child(2) { width: 40px; }
.ipad-large-topbar span:nth-child(3) { width: 14px; }
.ipad-large-elem {
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  margin-bottom: 8px;
}
.pencil {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 380px;
  background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 80%, #a0a0a0 100%);
  border-radius: 7px 7px 3px 3px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.3);
}
.pencil::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #b0b0b0;
}
.stylish-bg-blob {
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  opacity: .05;
  pointer-events: none;
}

/* ─── WORKFLOW / ECOSISTEMA (dark) ───────────────────────────── */
.workflow-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.workflow-section .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-lt);
  display: block;
  margin-bottom: 1rem;
}
.workflow-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.workflow-section > .container > .row > div > p {
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2rem;
}

.team-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(90,69,255,.3);
  box-shadow: 0 0 0 16px rgba(90,69,255,.08);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a0f4e, #0f172a);
}
.team-circle-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1a0f4e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-circle-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(90,69,255,.4) 0%, transparent 100%);
}
.team-people {
  display: flex; gap: 10px; position: relative; z-index: 1;
}
.team-person {
  width: 45px; height: 55px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #a78bfa, #4338ca);
}
.team-person:nth-child(2) { background: linear-gradient(180deg, #38bdf8, #0369a1); height: 65px; }
.team-person:nth-child(3) { background: linear-gradient(180deg, #a78bfa, #6d28d9); }

/* Integration cards */
.integration-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.int-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}
.int-card:hover { border-color: rgba(90,69,255,.4); transform: translateY(-2px); }
.int-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.int-icon.gws   { background: #1a3a6b; color: #4285F4; }
.int-icon.gcp   { background: #1a1040; color: #a78bfa; }
.int-icon.bq    { background: #0d2a3a; color: #38bdf8; }
.int-icon.apps  { background: #2a1a1a; color: #f97316; }
.int-card span {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  text-align: center;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: #09111d;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  display: none;
}
.testimonials-section::after {
  display: none;
}
.testimonials-section .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8b5cf6;
  display: block;
  margin-bottom: 1rem;
}
.testimonials-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.testimonials-section .lead {
  color: rgba(255,255,255,.58);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

.testi-card {
  background: var(--off-white);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
}
.testi-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}
.testi-card h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .25rem;
}
.testi-role {
  font-size: .78rem;
  color: var(--primary-dk);
  font-weight: 600;
  margin-bottom: .9rem;
  display: block;
}
.testi-stars { color: #ffc107; font-size: .85rem; margin-bottom: .9rem; }
.testi-text {
  font-size: .88rem;
  color: var(--body-txt);
  line-height: 1.75;
  font-style: italic;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.signal-card {
  background: #161b22;
  border: 1px solid rgba(90,69,255,.22);
  border-radius: 18px;
  padding: 2rem 1.55rem;
  min-height: 305px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 0 1px rgba(90,69,255,.07), 0 20px 60px rgba(0,0,0,.35);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.signal-card:hover {
  border-color: rgba(90,69,255,.45);
  box-shadow: 0 0 0 1px rgba(90,69,255,.25), 0 0 40px rgba(90,69,255,.14), 0 24px 60px rgba(0,0,0,.4);
  transform: translateY(-4px);
}

.signal-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b5de1, #7b6bff);
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(107,93,225,.5), 0 0 8px rgba(107,93,225,.3);
}

.signal-card:nth-child(2) .signal-avatar {
  background: linear-gradient(135deg, #ba5cf2, #f15f8f);
  box-shadow: 0 0 24px rgba(186,92,242,.5), 0 0 8px rgba(241,95,143,.3);
}

.signal-card:nth-child(3) .signal-avatar {
  background: linear-gradient(135deg, #33a7f5, #27d1d6);
  box-shadow: 0 0 24px rgba(51,167,245,.5), 0 0 8px rgba(39,209,214,.3);
}

.signal-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.signal-card strong {
  color: #a78bfa;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}

.signal-card p {
  color: #d1d5db;
  font-size: .9rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.72;
  margin: 0;
}

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
.legal-nav {
  background: rgba(10, 14, 28, .94);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.legal-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(90,69,255,.08), transparent 24%),
    linear-gradient(180deg, #09101c 0%, #0b0f19 100%);
  padding: 8.4rem 0 5rem;
}

.legal-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.legal-page__blob,
.legal-page__ribbon,
.legal-page__dots {
  position: absolute;
}

.legal-page__blob {
  border-radius: 50%;
}

.legal-page__blob--left {
  width: min(42vw, 580px);
  height: min(42vw, 580px);
  left: -10vw;
  bottom: -20vh;
  background: radial-gradient(circle at 35% 35%, rgba(139,92,246,.46), rgba(90,69,255,.16) 58%, transparent 74%);
}

.legal-page__blob--right {
  width: min(34vw, 440px);
  height: min(34vw, 440px);
  right: -8vw;
  top: 12vh;
  background: radial-gradient(circle at 40% 40%, rgba(76,29,149,.34), rgba(90,69,255,.09) 60%, transparent 74%);
}

.legal-page__ribbon {
  left: 25vw;
  top: 30vh;
  width: min(34vw, 520px);
  height: min(12vw, 160px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(90,69,255,.14), rgba(34,211,238,.06));
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(-8deg);
}

.legal-page__dots {
  right: 14vw;
  bottom: 18vh;
  width: 150px;
  height: 116px;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(196,181,253,.85) 1.3px, transparent 1.5px);
  background-size: 20px 20px;
}

.legal-page__content {
  position: relative;
  z-index: 1;
}

.legal-page__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.legal-page__intro .section-tag {
  display: inline-block;
  margin-bottom: 1rem;
}

.legal-page__intro h1 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: .98;
  letter-spacing: -0.05em;
}

.legal-page__updated,
.legal-page__lead {
  color: rgba(226,232,255,.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.legal-page__updated {
  margin-bottom: .8rem;
}

.legal-page__lead {
  max-width: 700px;
  margin: 0 auto;
}

.legal-page__card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(17,23,37,.94), rgba(14,19,31,.92)),
    radial-gradient(circle at top right, rgba(90,69,255,.08), transparent 24%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 26px 60px rgba(3,7,18,.22),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.legal-page__section + .legal-page__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.legal-page__section h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-page__section p,
.legal-page__section li {
  color: rgba(226,232,255,.74);
  font-size: 1.05rem;
  line-height: 1.78;
}

.legal-page__section p {
  margin: 0;
}

.legal-page__section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-page__section a {
  color: #c4b5fd;
  text-decoration: underline;
  text-decoration-color: rgba(196,181,253,.45);
  text-underline-offset: 3px;
}

.legal-page__section a:hover {
  color: #ddd6fe;
}

/* ─── CONTACTO (split photo + form) ─────────────────────────── */
.early-access {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}
.early-access-photo {
  flex: 1;
  background: linear-gradient(135deg, #1a0f4e 0%, #3d2ecc 60%, #5a45ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.early-access-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='520' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='200' cy='420' rx='160' ry='200' fill='rgba(255,255,255,0.06)'/%3E%3Cellipse cx='320' cy='100' rx='120' ry='140' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") center/cover;
}
.hand-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: .6;
}

.early-access-form {
  width: 45%;
  min-width: 320px;
  background: rgba(11,13,27,.95);
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .early-access { flex-direction: column; }
  .early-access-photo { min-height: 280px; }
  .early-access-form { width: 100%; padding: 50px 30px; }
}
.early-access-form .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-lt);
  display: block;
  margin-bottom: 1rem;
}
.early-access-form h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.early-access-form p {
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: .92rem;
}
.early-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.early-form input {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: .8rem 1.2rem;
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.early-form input:focus { border-color: var(--primary-lt); }
.early-form input::placeholder { color: rgba(255,255,255,.35); }
.early-form button {
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem;
  cursor: pointer;
  transition: background .2s;
}
.early-form button:hover { background: var(--primary-lt); }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-actions .btn-hero-primary,
.contact-actions .btn-hero-wa {
  justify-content: center;
}

/* ─── AGENDA / CTA SECUNDARIA ────────────────────────────────── */
.download-section {
  background: var(--white);
  padding: 100px 0;
}
.download-section .section-tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-dk);
  display: block;
  margin-bottom: 1rem;
}
.download-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 1rem;
}
.download-section p {
  color: var(--body-txt);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background .2s;
  border: 1.5px solid rgba(255,255,255,.1);
}
.store-btn:hover { background: #1c2040; color: #fff; }
.store-btn.green { background: var(--primary-dk); border-color: var(--primary); }
.store-btn.green:hover { background: var(--primary); }
.store-btn i { font-size: 1.6rem; }
.store-btn-text small { display: block; font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; }
.store-btn-text strong { font-size: .95rem; font-weight: 700; }

/* Dashboard phone mockup */
.phone-mockup-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-main {
  width: 180px;
  height: 370px;
  background: #111;
  border-radius: 32px;
  border: 7px solid #222;
  box-shadow: 0 40px 80px rgba(0,0,0,.2);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.phone-main-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #3d2ecc, #5a45ff);
  display: flex; flex-direction: column; padding: 12px 8px;
}
.phone-notch {
  width: 50px; height: 12px;
  background: #111;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 8px;
}
.phone-ui-row {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.25);
  margin-bottom: 8px;
}
.phone-ui-row.short { width: 60%; }
.phone-ui-card {
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  height: 70px;
  margin-bottom: 8px;
}

/* ─── CTA BLOB ───────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90vw;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  position: relative; z-index: 1;
}
.btn-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: .9rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  position: relative; z-index: 1;
  text-decoration: none;
  display: inline-block;
}
.btn-cta:hover { background: var(--primary-lt); color: #fff; transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #09111d;
  padding: 0;
}
.footer-bottom {
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,.32);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .03em;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.75); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-right a {
  color: rgba(255,255,255,.35);
  font-size: .9rem;
  transition: color .2s;
  text-decoration: none;
}
.footer-right a:hover { color: #fff; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    margin-top: .9rem;
    padding: .85rem;
    background: #111426;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
  }
  #mainNav .navbar-nav {
    gap: .2rem;
    margin-bottom: .8rem;
  }
  #mainNav .nav-link,
  #mainNav .dropdown-item {
    border-radius: 10px;
  }
  #mainNav .nav-link {
    padding: .8rem .9rem !important;
  }
  #mainNav .dropdown-menu {
    position: static;
    display: block;
    background: rgba(255,255,255,.04);
    border: 0;
    margin: .15rem 0 .5rem;
  }
  #mainNav .d-flex {
    align-items: stretch !important;
    flex-direction: column;
  }
  #mainNav .btn-wa,
  #mainNav .btn-cta-nav {
    text-align: center;
    padding: .8rem 1rem;
  }
  .hero { min-height: auto; padding-bottom: 112px; }
  .hero-ipads {
    display: block;
    height: 466px;
    max-width: 680px;
    margin-bottom: -26px;
  }
  .ipad-mockup.back {
    width: 300px;
    height: 388px;
    left: 34px;
    bottom: -40px;
  }
  .ipad-mockup.front {
    width: 320px;
    height: 414px;
    right: 50px;
    bottom: -52px;
  }
  .brands-section {
    margin-top: -18px;
    padding-top: 70px;
  }
  .brands-section::before {
    left: -9%;
    top: -52px;
    width: 118%;
    height: 118px;
  }
  .mini-site-copy {
    margin: 42px 0 0 18px;
    max-width: 160px;
  }
  .mini-site-copy h3 { font-size: .98rem; }
  .domain-card {
    min-height: 46px;
    border-radius: 10px;
  }
  .domain-card strong { font-size: .82rem; }
  .workspace-body { grid-template-columns: 36px 128px 190px; }
  .workspace-rail {
    gap: 18px;
    padding-top: 16px;
  }
  .workspace-sidebar {
    padding: 12px 7px 12px 8px;
    gap: 5px;
  }
  .gmail-brand {
    min-height: 28px;
    font-size: .8rem;
    margin-bottom: 5px;
  }
  .workspace-sidebar button {
    min-height: 36px;
    border-radius: 11px;
    font-size: .54rem;
    margin-bottom: 5px;
  }
  .workspace-sidebar span {
    min-height: 20px;
    font-size: .47rem;
    gap: 6px;
  }
  .gmail-label-row {
    margin-top: 7px;
    font-size: .52rem;
  }
  .gmail-search {
    height: 32px;
    margin: 0 9px 8px;
    font-size: .54rem;
  }
  .gmail-toolbar { height: 26px; }
  .gmail-list div {
    min-height: 27px;
    font-size: .48rem;
  }
  .gmail-list strong { font-size: .5rem; }
  .stylish-section .row { gap: 3rem; }
  .ipad-pencil-wrap { margin-top: 2rem; }
  .workflow-section .row { gap: 3rem; }
  .integration-cards { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .hero { padding: 74px 0 92px; }
  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
    top: 12px;
    margin-bottom: 1rem;
  }
  .hero p.lead {
    top: 18px;
    font-size: .98rem;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.15rem;
    white-space: normal;
  }
  .hero-ctas,
  .contact-actions {
    flex-direction: column;
  }
  .hero-ctas a,
  .contact-actions a {
    width: 100%;
  }
  .hero-capabilities {
    top: 24px;
    gap: .5rem .7rem;
    margin-bottom: 1.8rem;
  }
  .hero-capability {
    min-height: 1.9rem;
    padding: .38rem .72rem;
    font-size: .72rem;
  }
  .hero-capability i {
    font-size: .7rem;
  }
  .hero-capability-gemini svg {
    width: .78rem;
    height: .78rem;
  }
  .hero-ipads {
    height: 662px;
    max-width: 360px;
    margin-top: 1.8rem;
    margin-bottom: -18px;
  }
  .ipad-mockup.back,
  .ipad-mockup.front {
    width: 260px;
    height: 328px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(0deg);
  }
  .ipad-mockup.back {
    bottom: 314px;
    z-index: 1;
  }
  .ipad-mockup.front {
    bottom: -14px;
    z-index: 2;
  }
  .site-screen { padding: 14px; }
  .mini-site-nav small { display: none; }
  .mini-site-copy {
    margin: 34px 0 0 14px;
    max-width: 136px;
  }
  .mini-site-copy h3 { font-size: .82rem; }
  .domain-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 40px;
    padding: 0 13px;
    gap: 10px;
  }
  .domain-card strong { font-size: .76rem; }
  .workspace-body { grid-template-columns: 32px 114px 150px; }
  .workspace-rail {
    gap: 16px;
    padding-top: 14px;
    font-size: .62rem;
  }
  .workspace-rail .mail-badge {
    min-width: 21px;
    height: 14px;
    font-size: .42rem;
  }
  .workspace-sidebar {
    padding: 10px 6px;
    gap: 4px;
  }
  .gmail-brand {
    min-height: 24px;
    font-size: .68rem;
    gap: 6px;
    margin-bottom: 4px;
  }
  .gmail-brand i { font-size: .92rem; }
  .workspace-sidebar button {
    min-height: 30px;
    border-radius: 10px;
    font-size: .46rem;
    gap: 7px;
    margin-bottom: 4px;
  }
  .workspace-sidebar span {
    min-height: 18px;
    padding: 0 6px;
    font-size: .4rem;
    gap: 4px;
  }
  .workspace-sidebar span.nested { padding-left: 16px; }
  .gmail-label-row {
    margin: 6px 5px 1px;
    font-size: .44rem;
  }
  .workspace-content { padding: 9px 0 0; }
  .gmail-search {
    height: 28px;
    margin: 0 8px 7px;
    padding: 0 10px;
    font-size: .48rem;
  }
  .gmail-toolbar {
    height: 24px;
    gap: 14px;
    padding: 0 12px;
  }
  .gmail-list div {
    min-height: 24px;
    grid-template-columns: 12px 12px 1fr;
    gap: 6px;
    padding: 0 9px;
    font-size: .42rem;
  }
  .gmail-list strong { font-size: .44rem; }
  .brands-section {
    margin-top: -12px;
    padding-top: 58px;
  }
  .brands-section::before {
    left: -7%;
    top: -40px;
    width: 114%;
    height: 92px;
  }
  .brands-section,
  .video-section,
  .proceso-section,
  .stylish-section,
  .workflow-section,
  .testimonials-section,
  .download-section,
  .cta-section {
    padding: 48px 0;
  }
  .brands-logos { gap: 24px; }
  .brand-logo { font-size: 1rem; }
  .flashcards-grid { grid-template-columns: 1fr; }
  .flash-card, .flash-card__inner { height: 240px; }
  .flash-card__face { padding: 26px; }
  .signal-grid { grid-template-columns: 1fr; }
  .download-section .row { flex-direction: column-reverse; }
  .phone-mockup-wrap { min-height: 390px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 420px) {
  #mainNav .navbar-brand { font-size: 1.12rem; }
  .brands-label { font-size: .72rem; }
  .brand-logo {
    width: calc(50% - 14px);
    justify-content: center;
  }
}

/* ─── FINAL CONTACT ─────────────────────────────────────────── */
/* ─── Final Contact Section ─────────────────────────────── */
.final-contact-section {
  background: #09111d;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.final-contact-section::before,
.final-contact-section::after { display: none; }

/* Blob / shape decorations — same visual language as proceso-section */
.final-contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-contact-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.final-contact-blob--main {
  right: -14vw;
  top: 8vh;
  width: min(72vw, 980px);
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(79, 70, 229, .16), rgba(99, 102, 241, .04)),
    rgba(45, 31, 112, .94);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 34px 90px rgba(1,4,9,.22);
  border-radius: 54% 46% 48% 52% / 42% 34% 66% 58%;
  animation: contact-blob-a 20s ease-in-out infinite;
}

.final-contact-blob--accent {
  left: -18vw;
  bottom: -20vh;
  width: min(76vw, 1080px);
  aspect-ratio: 1 / 0.62;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, .18), rgba(167, 139, 250, .03)),
    rgba(67, 47, 144, .96);
  border-radius: 42% 58% 60% 40% / 38% 36% 64% 62%;
  animation: contact-blob-b 24s ease-in-out infinite;
}

.final-contact-ribbon {
  position: absolute;
  left: 14vw;
  top: 42vh;
  width: min(50vw, 720px);
  height: min(18vw, 240px);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(196, 181, 253, .08), rgba(167, 139, 250, .01)),
    rgba(94, 65, 224, .12);
  box-shadow: inset 0 0 0 1px rgba(196, 181, 253, .12);
  transform: rotate(-8deg);
  pointer-events: none;
}

.final-contact-glow {
  display: none;
}

.final-contact-dots {
  position: absolute;
  right: 10vw;
  bottom: 22vh;
  width: 160px;
  height: 160px;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(226, 232, 255, .92) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  animation: contact-dots-drift 18s ease-in-out infinite;
}

/* Header */
.final-contact-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.final-contact-header .section-tag {
  display: inline-block;
  color: rgba(196, 181, 253, .82);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.final-contact-headline {
  color: #d8cdfd;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: .75rem;
}

.final-contact-headline em {
  font-style: normal;
  color: #fff;
}

.final-contact-lead {
  color: rgba(226, 232, 255, .66);
  font-size: clamp(.875rem, 1.3vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

/* Contact option cards */
.contact-opts-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-opt-card {
  position: relative;
  border-radius: 20px;
  padding: 1.75rem 1.75rem;
  background: rgba(9, 17, 29, .72);
  border: 1px solid rgba(196, 181, 253, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(1, 4, 9, .28), inset 0 1px 0 rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-opt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 181, 253, .28);
  box-shadow: 0 24px 80px rgba(1, 4, 9, .38), inset 0 1px 0 rgba(255,255,255,.06);
}

.contact-opt-card--featured {
  border-color: rgba(196, 181, 253, .22);
  box-shadow: 0 20px 70px rgba(90, 69, 255, .18), inset 0 1px 0 rgba(255,255,255,.06);
}

.contact-opt-card--featured:hover {
  border-color: rgba(196, 181, 253, .42);
  box-shadow: 0 32px 100px rgba(90, 69, 255, .28), inset 0 1px 0 rgba(255,255,255,.09);
}

.contact-opt-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(92deg, #5A45FF, #7c3aed);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.contact-opt-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-opt-icon--purple {
  background: rgba(90, 69, 255, .16);
  border: 1px solid rgba(196, 181, 253, .22);
}

.contact-opt-icon--green {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .22);
  font-size: 1.5rem;
  color: #22c55e;
}

.contact-opt-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ddd6fe;
  margin: 0;
  line-height: 1.2;
}

.contact-opt-desc {
  color: rgba(226, 232, 255, .66);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.contact-opt-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .28rem;
}

.contact-opt-meta li {
  font-size: .82rem;
  color: rgba(226, 232, 255, .48);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.contact-opt-meta i {
  color: rgba(196, 181, 253, .72);
  width: 14px;
  flex-shrink: 0;
}

.contact-opt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .25rem;
  padding: .72rem 1.5rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}

.contact-opt-btn--purple {
  background: linear-gradient(135deg, #5A45FF, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 24px rgba(90, 69, 255, .38);
}

.contact-opt-btn--purple:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(90, 69, 255, .55);
}

.contact-opt-btn--green {
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .28);
  color: #4ade80;
}

.contact-opt-btn--green:hover {
  color: #86efac;
  background: rgba(34, 197, 94, .16);
  border-color: rgba(34, 197, 94, .45);
  transform: translateY(-2px);
}

@keyframes contact-blob-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes contact-blob-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 18px, 0); }
}

@keyframes contact-glow-pulse {
  0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: .85; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes contact-dots-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .16; }
  50% { transform: translate3d(0, -10px, 0); opacity: .26; }
}

@media (max-width: 767px) {
  .final-contact-section { padding: 56px 0 64px; }
  .final-contact-header { margin-bottom: 28px; }
  .final-contact-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .contact-opts-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ===== Proceso story rewrite ===== */
.proceso-section {
  position: relative;
  overflow: clip;
  background: #09111d;
  padding: 0;
}

.proceso-section::before {
  display: none;
}

.proceso-section::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -110px;
  width: 116%;
  height: 220px;
  background: #09111d;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 4;
  pointer-events: none;
}

.proceso-story {
  position: relative;
  --story-number-offset: 0px;
  --story-shape-offset: 0px;
}

.proceso-story__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
}

.proceso-story__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.proceso-story__blob,
.proceso-story__ribbon,
.proceso-story__glow,
.proceso-story__dots {
  position: absolute;
  will-change: transform, opacity, clip-path;
}

.proceso-story__blob {
  border-radius: 50%;
  transition:
    transform .9s cubic-bezier(.22, 1, .36, 1),
    opacity .8s ease,
    border-radius .9s cubic-bezier(.22, 1, .36, 1);
}

.proceso-story__blob--main {
  right: -14vw;
  top: 18vh;
  width: min(72vw, 980px);
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(79, 70, 229, .16), rgba(99, 102, 241, .04)),
    rgba(45, 31, 112, .94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .03),
    0 34px 90px rgba(1, 4, 9, .22);
  transform: translate3d(0, calc(var(--story-shape-offset) * -.45), 0);
  animation: proceso-blob-drift 18s ease-in-out infinite;
}

.proceso-story__blob--accent {
  left: -20vw;
  bottom: -28vh;
  width: min(76vw, 1080px);
  aspect-ratio: 1 / 0.62;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, .18), rgba(167, 139, 250, .03)),
    rgba(67, 47, 144, .96);
  opacity: .98;
  transform: translate3d(0, calc(var(--story-shape-offset) * .35), 0);
  animation: proceso-blob-drift-alt 22s ease-in-out infinite;
}

.proceso-story__ribbon {
  left: 14vw;
  top: 40vh;
  width: min(54vw, 760px);
  height: min(20vw, 260px);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(196, 181, 253, .08), rgba(167, 139, 250, .01)),
    rgba(94, 65, 224, .12);
  box-shadow:
    inset 0 0 0 1px rgba(196, 181, 253, .12),
    0 18px 60px rgba(5, 9, 20, .12);
  transform: rotate(-8deg) translate3d(0, calc(var(--story-shape-offset) * -.2), 0);
  filter: saturate(1.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition:
    transform .9s cubic-bezier(.22, 1, .36, 1),
    width .9s cubic-bezier(.22, 1, .36, 1),
    height .9s cubic-bezier(.22, 1, .36, 1),
    opacity .8s ease;
}

.proceso-story__ribbon--secondary {
  left: auto;
  right: 8vw;
  top: 28vh;
  width: min(22vw, 280px);
  height: min(34vw, 420px);
  border-radius: 42% 58% 60% 40% / 38% 36% 64% 62%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
    rgba(84, 74, 182, .16);
  transform: translate3d(0, calc(var(--story-shape-offset) * -.1), 0);
  animation: proceso-pane-drift 20s ease-in-out infinite;
}

.proceso-story__glow {
  left: 48%;
  top: 44%;
  width: min(26vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .2) 0%, rgba(34, 211, 238, .11) 34%, rgba(34, 211, 238, 0) 70%);
  filter: blur(10px);
  opacity: .6;
  transform: translate3d(-50%, calc(-50% + var(--story-shape-offset) * -.22), 0);
  animation: proceso-glow-pulse 6.4s ease-in-out infinite;
}

.proceso-story__dots {
  right: 10vw;
  bottom: 20vh;
  width: 170px;
  height: 170px;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(226, 232, 255, .92) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  animation: proceso-dots-drift 18s ease-in-out infinite;
}

.proceso-story__stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(5.5rem, 8vw, 7rem);
  padding-bottom: clamp(5.5rem, 8vw, 7rem);
}

.proceso-header {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto clamp(2.6rem, 4.8vw, 3.6rem);
  text-align: center;
}

.proceso-section .section-tag {
  color: #8b5cf6;
}

.proceso-header h2 {
  font-size: clamp(2.35rem, 5.3vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: .9rem;
}

.proceso-header .lead {
  max-width: 720px;
  color: rgba(226, 232, 255, .66);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.proceso-story__canvas {
  position: relative;
  min-height: min(46vh, 430px);
}

.proceso-story__numbers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.proceso-story__number {
  position: absolute;
  left: clamp(0rem, 3vw, 2rem);
  top: 48%;
  transform: translate3d(0, calc(-50% + var(--story-number-offset)), 0);
  font-size: clamp(12rem, 26vw, 20rem);
  line-height: .74;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(196, 181, 253, .15);
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.proceso-story__number.is-active {
  opacity: 1;
  visibility: visible;
}

.proceso-story__number[data-step="0"] {
  left: clamp(0rem, 3vw, 2rem);
  right: auto;
}

.proceso-story__number[data-step="1"] {
  left: 50%;
  right: auto;
  transform: translate3d(-50%, calc(-50% + var(--story-number-offset, 0px)), 0);
}

.proceso-story__number[data-step="2"] {
  left: 65%;
  right: auto;
  transform: translate3d(-50%, calc(-50% + var(--story-number-offset, 0px)), 0);
}

.proceso-story__copy {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  min-height: 280px;
}

.proceso-story__panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(100%, 520px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .55s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1);
}

.proceso-story__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.proceso-story__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(196, 181, 253, .82);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.proceso-story__panel h3 {
  margin: 0 0 1rem;
  color: #d8cdfd;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: .98;
  letter-spacing: -0.04em;
  transition: color .45s ease;
}

.proceso-story__panel p {
  margin: 0;
  max-width: 440px;
  color: rgba(226, 232, 255, .7);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.72;
}

.proceso-story__sentinels {
  position: relative;
  z-index: 1;
}

.proceso-story__sentinel {
  height: 100vh;
}

[data-active-step="0"] .proceso-story__blob--main {
  border-radius: 54% 46% 48% 52% / 42% 34% 66% 58%;
  transform: translate3d(0, calc(var(--story-shape-offset) * -.45), 0) scale(1);
}

[data-active-step="0"] .proceso-story__panel.is-active h3 {
  color: #ddd6fe;
}

[data-active-step="0"] .proceso-story__blob--accent {
  transform: translate3d(0, calc(var(--story-shape-offset) * .35), 0) scale(1);
}

[data-active-step="0"] .proceso-story__ribbon--primary {
  opacity: .78;
}

[data-active-step="1"] .proceso-story__blob--main {
  border-radius: 38% 62% 54% 46% / 34% 32% 68% 66%;
  transform: translate3d(-4vw, calc(var(--story-shape-offset) * -.3), 0) scale(.92) rotate(-9deg);
}

[data-active-step="1"] .proceso-story__panel.is-active h3 {
  color: #ddd6fe;
}

[data-active-step="1"] .proceso-story__blob--accent {
  transform: translate3d(8vw, calc(var(--story-shape-offset) * .2), 0) scale(1.1) rotate(6deg);
}

[data-active-step="1"] .proceso-story__ribbon--primary {
  width: min(42vw, 560px);
  height: min(14vw, 180px);
  top: 46vh;
  left: 30vw;
  opacity: .92;
  transform: rotate(4deg) translate3d(0, calc(var(--story-shape-offset) * -.2), 0);
}

[data-active-step="1"] .proceso-story__ribbon--secondary {
  right: 14vw;
  top: 22vh;
  transform: translate3d(0, calc(var(--story-shape-offset) * -.08), 0) scale(.82);
}

[data-active-step="1"] .proceso-story__glow {
  opacity: .72;
  transform: translate3d(-26%, calc(-50% + var(--story-shape-offset) * -.18), 0) scale(1.14);
}

[data-active-step="2"] .proceso-story__blob--main {
  width: min(88vw, 1220px);
  right: -22vw;
  top: 12vh;
  border-radius: 42% 58% 44% 56% / 28% 40% 60% 72%;
  transform: translate3d(0, calc(var(--story-shape-offset) * -.18), 0) scale(1.08);
}

[data-active-step="2"] .proceso-story__panel.is-active h3 {
  color: #ddd6fe;
}

[data-active-step="2"] .proceso-story__blob--accent {
  width: min(86vw, 1180px);
  left: -14vw;
  bottom: -22vh;
  transform: translate3d(0, calc(var(--story-shape-offset) * .18), 0) scale(1.08);
}

[data-active-step="2"] .proceso-story__ribbon--primary {
  left: 40vw;
  top: 34vh;
  width: min(30vw, 430px);
  height: min(10vw, 140px);
  transform: rotate(18deg) translate3d(0, calc(var(--story-shape-offset) * -.14), 0);
}

[data-active-step="2"] .proceso-story__ribbon--secondary {
  right: 2vw;
  top: 18vh;
  width: min(30vw, 380px);
  height: min(42vw, 500px);
  transform: translate3d(0, calc(var(--story-shape-offset) * -.05), 0) rotate(-4deg);
}

[data-active-step="2"] .proceso-story__glow {
  left: 64%;
  top: 42%;
  opacity: .95;
  transform: translate3d(-50%, calc(-50% + var(--story-shape-offset) * -.1), 0) scale(1.26);
}

[data-active-step="0"] .proceso-story__copy {
  margin-left: clamp(8rem, 15vw, 14rem);
  margin-right: auto;
}

[data-active-step="1"] .proceso-story__copy {
  margin-left: auto;
  margin-right: auto;
}

[data-active-step="2"] .proceso-story__copy {
  margin-left: auto;
  margin-right: clamp(8rem, 15vw, 14rem);
}

@keyframes proceso-blob-drift {
  0%, 100% { transform: translate3d(0, calc(var(--story-shape-offset) * -.45), 0); }
  50% { transform: translate3d(0, calc(var(--story-shape-offset) * -.45 - 10px), 0); }
}

@keyframes proceso-blob-drift-alt {
  0%, 100% { transform: translate3d(0, calc(var(--story-shape-offset) * .35), 0); }
  50% { transform: translate3d(0, calc(var(--story-shape-offset) * .35 + 14px), 0); }
}

@keyframes proceso-pane-drift {
  0%, 100% { transform: translate3d(0, calc(var(--story-shape-offset) * -.1), 0); }
  50% { transform: translate3d(0, calc(var(--story-shape-offset) * -.1 - 12px), 0); }
}

@keyframes proceso-glow-pulse {
  0%, 100% { opacity: .56; transform: translate3d(-50%, calc(-50% + var(--story-shape-offset) * -.22), 0) scale(.96); }
  50% { opacity: .92; transform: translate3d(-50%, calc(-50% + var(--story-shape-offset) * -.22), 0) scale(1.08); }
}

@keyframes proceso-dots-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .16; }
  50% { transform: translate3d(0, -10px, 0); opacity: .26; }
}

@media (max-width: 1024px) {
  .proceso-story__stage {
    padding-top: 8.2rem;
  }

  .proceso-header {
    margin-bottom: 2.6rem;
  }

  .proceso-story__canvas {
    min-height: 520px;
  }

  .proceso-story__copy {
    margin-left: 8.5rem;
    min-height: 250px;
  }

  .proceso-story__number {
    left: 0;
    font-size: clamp(9rem, 22vw, 13rem);
  }

  .proceso-story__blob--main {
    width: min(92vw, 880px);
    right: -28vw;
  }
}

@media (max-width: 767px) {
  .proceso-story__sticky {
    min-height: auto;
    position: relative;
  }

  .proceso-story__stage {
    min-height: auto;
    padding-top: 7.4rem;
    padding-bottom: 5rem;
  }

  .proceso-header {
    margin-bottom: 2.2rem;
  }

  .proceso-header h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .proceso-story__canvas {
    min-height: 420px;
  }

  .proceso-story__copy {
    width: 100%;
    min-height: 220px;
    margin-left: 0;
    padding-top: 7.5rem;
  }

  .proceso-story__number {
    left: -.03em;
    top: 0;
    transform: translate3d(0, var(--story-number-offset), 0);
    font-size: clamp(7rem, 24vw, 10rem);
  }

  .proceso-story__panel {
    width: 100%;
  }

  .proceso-story__panel h3 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .proceso-story__panel p {
    max-width: 100%;
  }

  .proceso-story__blob--main {
    top: 28vh;
    right: -46vw;
    width: 122vw;
  }

  .proceso-story__blob--accent {
    left: -40vw;
    bottom: -16vh;
    width: 138vw;
  }

  .proceso-story__ribbon--primary {
    left: 6vw;
    top: 54vh;
    width: 84vw;
    height: 20vw;
  }

  .proceso-story__ribbon--secondary {
    right: -8vw;
    top: 18vh;
    width: 42vw;
    height: 56vw;
  }

  .proceso-story__glow {
    left: 52%;
    top: 56%;
    width: 50vw;
  }

  .proceso-story__dots {
    right: 4vw;
    bottom: 16vh;
    width: 112px;
    height: 112px;
    background-size: 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proceso-story__blob,
  .proceso-story__ribbon,
  .proceso-story__glow,
  .proceso-story__dots,
  .proceso-story__number,
  .proceso-story__panel {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}
