:root {
  --bg: #000;
  --bg-900: #111827;
  --bg-800: #1f2937;
  --bg-700: #374151;
  --text: #fff;
  --text-muted: #d1d5db;
  --text-soft: #9ca3af;
  --cyan: #22d3ee;
  --cyan-hover: #67e8f9;
  --border: #374151;
  --radius: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  min-height: calc(100vh - 78px);
  scroll-margin-top: 78px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(17, 24, 39, .95);
  border-bottom: 1px solid #1f2937;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  gap: 1.6rem;
}

.nav-links button,
.nav-links a {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.nav-links button:hover,
.nav-links a:hover {
  color: var(--cyan);
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 1rem;
  background: var(--cyan);
  color: #000;
  padding: .5rem .8rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: .8rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cyan);
  color: #000;
}

.btn-primary:hover {
  background: var(--cyan-hover);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .08);
}

.btn-block {
  width: 100%;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url('./assets/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  background: rgba(0, 0, 0, .55);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  height: 110px;
  width: auto;
  margin-bottom: 2.5rem;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  margin-top: .3rem;
}

.hero p {
  color: var(--text-muted);
  max-width: 760px;
  margin: 1.2rem auto 2.2rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  justify-content: center;
  align-items: center;
}

.discover {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  border: 0;
  background: none;
  color: var(--text-soft);
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
  text-decoration: none;
}

.discover-arrow {
  font-size: 1.5rem;
}

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

.section-dark {
  background: var(--bg-900);
}

.section-mid {
  background: var(--bg-800);
}

.section-contact {
  background: linear-gradient(135deg, #111827 0%, #000 100%);
}

.section-testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .96) 0%, #111827 100%);
  border-top: 1px solid rgba(34, 211, 238, .18);
  border-bottom: 1px solid rgba(34, 211, 238, .18);
}

.section-testimonials .container {
  position: relative;
}

.text-center {
  text-align: center;
}

.diferenciador-text {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
  max-width: 900px;
  margin-inline: auto;
}

.diferenciador-highlight {
  color: var(--cyan);
}

.diferenciador-subtext {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 1.5rem;
}

.diferenciador-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: left;
}

.diferenciador-card {
  background: var(--bg-800);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diferenciador-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--cyan);
}

.diferenciador-icon {
  font-size: 2.5rem;
}

.diferenciador-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.diferenciador-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  max-width: 900px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--cyan);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.section-title p {
  margin: .8rem 0 0;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.title-line {
  width: 80px;
  height: 4px;
  background: var(--cyan);
  margin: 1rem auto 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.solution-card {
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--cyan);
}

.solution-icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.solution-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.client-network {
  position: relative;
  min-height: clamp(460px, 58vw, 620px);
  max-width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 18px;
  background:
    linear-gradient(rgba(148, 163, 184, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(34, 211, 238, .16), transparent 30%),
    linear-gradient(180deg, rgba(17, 24, 39, .42), rgba(15, 23, 42, .18));
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.client-network::before,
.client-network::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 50%;
  animation: networkBreath 7s ease-in-out infinite;
  pointer-events: none;
}

.client-network::after {
  inset: 24%;
  animation-delay: -2.5s;
}

.network-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, .16), transparent);
  height: 28%;
  opacity: .42;
  animation: networkScan 7s ease-in-out infinite;
  pointer-events: none;
}

.network-frame-label {
  position: absolute;
  z-index: 2;
  color: rgba(209, 213, 219, .72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.network-frame-label-top {
  top: 1rem;
  left: 1rem;
}

.network-frame-label-bottom {
  right: 1rem;
  bottom: 1rem;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-line {
  stroke: rgba(148, 163, 184, .3);
  stroke-width: .5;
  stroke-linecap: round;
  stroke-dasharray: 2 4;
  animation: networkSignal 5s linear infinite;
  transition: stroke .25s ease, stroke-width .25s ease, opacity .25s ease;
}

.network-line.is-active {
  stroke: rgba(34, 211, 238, .95);
  stroke-width: .85;
  opacity: 1;
}

.network-packet {
  fill: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, .8));
}

.network-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(190px, 25vw, 280px);
  min-height: clamp(86px, 10vw, 112px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .44);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(17, 24, 39, .82)),
    radial-gradient(circle at center, rgba(34, 211, 238, .22), rgba(17, 24, 39, .92) 64%);
  box-shadow: 0 0 38px rgba(34, 211, 238, .18), inset 0 0 28px rgba(34, 211, 238, .14);
  animation: hubPulse 4.8s ease-in-out infinite;
  z-index: 4;
  padding: 1rem 1.25rem;
}

.network-hub::before,
.network-hub::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--cyan);
  opacity: .78;
}

.network-hub::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.network-hub::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.network-hub img {
  width: min(210px, 88%);
  height: auto;
  display: block;
}

.client-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 3;
  width: clamp(128px, 18vw, 190px);
  min-height: 96px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: .45rem;
  border: 1px solid rgba(148, 163, 184, .35);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: #111827;
  padding: .85rem .9rem;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
  animation: nodeFloat 6s ease-in-out infinite;
  animation-delay: var(--node-delay, 0s);
}

.client-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(34, 211, 238, .2);
  border-radius: 18px;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .25s ease, transform .25s ease;
}

.client-node:hover,
.client-node:focus-visible,
.client-node.is-active {
  border-color: var(--cyan);
  box-shadow: 0 24px 54px rgba(34, 211, 238, .2), 0 18px 36px rgba(0, 0, 0, .3);
  filter: saturate(1.08);
  transform: translate(-50%, -50%) translateY(-5px) scale(1.04);
}

.client-node:hover::before,
.client-node:focus-visible::before,
.client-node.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.client-node:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .7);
  outline-offset: 5px;
}

.client-node img {
  width: auto;
  max-width: min(136px, 86%);
  max-height: 48px;
  height: auto;
  object-fit: contain;
  display: block;
}

.client-node span {
  max-width: 100%;
  color: #111827;
  font-weight: 800;
  font-size: clamp(.78rem, 1.6vw, .92rem);
  line-height: 1.15;
  text-align: center;
}

.client-network-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1rem;
  align-items: center;
  width: min(760px, 100%);
  margin: 1rem auto 0;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 14px;
  background: rgba(17, 24, 39, .84);
  padding: .95rem 1.1rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
  backdrop-filter: blur(8px);
}

.client-network-kicker {
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.client-network-card h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.client-network-card p:last-child {
  margin: .35rem 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

@keyframes networkScan {
  0%, 100% {
    transform: translateY(-40%);
  }

  50% {
    transform: translateY(300%);
  }
}

@keyframes networkSignal {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes networkBreath {
  0%, 100% {
    transform: scale(.98);
    opacity: .45;
  }

  50% {
    transform: scale(1.04);
    opacity: .95;
  }
}

@keyframes hubPulse {
  0%, 100% {
    box-shadow: 0 0 34px rgba(34, 211, 238, .16), inset 0 0 28px rgba(34, 211, 238, .14);
  }

  50% {
    box-shadow: 0 0 56px rgba(34, 211, 238, .28), inset 0 0 38px rgba(34, 211, 238, .2);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    margin-top: 0;
  }

  50% {
    margin-top: -8px;
  }
}

.contact-layout {
  display: grid;
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.faq-section {
  border-top: 1px solid #1f2937;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #374151;
  border-radius: 12px;
  background: rgba(31, 41, 55, .45);
  padding: 1.25rem;
}

.faq-item h3 {
  margin: 0 0 .6rem;
  font-size: 1.15rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.panel {
  border: 2px solid #374151;
  background: rgba(31, 41, 55, .5);
  border-radius: 14px;
  padding: 1.5rem;
}

.panel-strong {
  background: #1f2937;
}

.panel h3 {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
}

.contact-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info .contact-item {
  flex: 1;
  margin-bottom: 0;
  margin-top: 20px;
  padding: .8rem 0;
}

.contact-item > div {
  min-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, .4);
  background: rgba(34, 211, 238, .15);
  flex-shrink: 0;
}

.contact-item p {
  margin: 0 0 .2rem;
  font-weight: 700;
}

.contact-item a,
.contact-item span {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--cyan);
}

.lead-magnet-card {
  position: relative;
  display: grid;
  gap: 1.6rem;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(31, 41, 55, .96), rgba(17, 24, 39, .98));
  padding: clamp(1.35rem, 4vw, 2.5rem);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .34);
}

.lead-magnet-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), rgba(34, 211, 238, 0));
}

.lead-magnet-copy,
.lead-magnet-action {
  position: relative;
  z-index: 1;
}

.lead-magnet-copy .eyebrow {
  margin-bottom: .8rem;
}

.lead-magnet-card h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.lead-magnet-intro {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.lead-magnet-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}

.lead-magnet-proof span {
  display: grid;
  gap: .25rem;
  min-width: 0;
  border-top: 1px solid rgba(34, 211, 238, .35);
  padding-top: .8rem;
}

.lead-magnet-proof strong {
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1;
}

.lead-magnet-proof small {
  color: var(--text-soft);
  font-size: .82rem;
}

.lead-magnet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: .75rem;
  color: var(--text-muted);
}

.lead-magnet-list li {
  position: relative;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 12px;
  padding: .85rem 1rem .85rem 2.55rem;
  background: rgba(17, 24, 39, .5);
  line-height: 1.55;
}

.lead-magnet-list li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .14);
}

.lead-magnet-btn {
  font-size: 1.05rem;
  white-space: normal;
  line-height: 1.35;
  display: block;
  margin: 1.15rem 0 1rem;
  padding-block: .95rem;
}

.lead-magnet-note {
  margin: .8rem 0 0;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: 2rem;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(31, 41, 55, .72), rgba(17, 24, 39, .92));
  padding: 1.35rem;
  display: grid;
  gap: 1.05rem;
  justify-items: stretch;
  height: 100%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(34, 211, 238, .85), rgba(34, 211, 238, 0));
  opacity: .8;
}

.testimonial-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .95rem;
  align-items: center;
}

.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, .35);
  background: #fff;
}

img.testimonial-photo {
  object-fit: contain;
  padding: .45rem;
  display: block;
}

.testimonial-photo.placeholder {
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, .13);
  color: var(--cyan);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.testimonial-card .testimonial-header > div:last-child {
  text-align: left;
  min-width: 0;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.08rem;
}

.testimonial-role {
  margin: .2rem 0 0;
  color: var(--text-soft);
  font-size: .9rem;
}

.testimonial-card {
  align-content: start;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.testimonial-quote.is-clamped {
  max-height: var(--testimonial-compact-height, 14rem);
  overflow: hidden;
}

.testimonial-quote.is-clamped::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4.2rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, .98));
  pointer-events: none;
}

.testimonial-result {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--cyan);
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-toggle {
  position: relative;
  z-index: 1;
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--cyan);
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.testimonial-toggle:hover {
  color: var(--cyan-hover);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .4);
}

.testimonials-empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--text-soft);
  border: 1px dashed #374151;
  border-radius: 12px;
  padding: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
  z-index: 60;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.contact-form-wrap #crmWebToEntityForm {
  background: transparent !important;
  color: var(--text) !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.contact-form-wrap .zcwf_lblLeft {
  width: 100% !important;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_title {
  color: var(--text) !important;
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
  padding: 0;
  font-family: inherit !important;
  font-weight: 700;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_row {
  margin: .9rem 0;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_lab {
  width: 100% !important;
  float: none !important;
  margin: 0 0 .35rem;
  padding: 0;
  color: var(--text-muted);
  font-size: .95rem;
  font-family: inherit !important;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld {
  width: 100% !important;
  float: none !important;
  padding: 0;
  margin-top: 0;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld input[type="password"],
.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld textarea,
.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld select {
  width: 100% !important;
  border: 1px solid #374151 !important;
  border-radius: 10px !important;
  background: #111827 !important;
  color: #fff !important;
  padding: .8rem .9rem !important;
  outline: none;
  font: inherit;
  float: none !important;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld textarea {
  resize: vertical;
  min-height: 108px;
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld input:focus,
.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld textarea:focus,
.contact-form-wrap .zcwf_lblLeft .zcwf_col_fld select:focus {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, .25);
}

.contact-form-wrap .zcwf_lblLeft .zcwf_col_help {
  display: none;
}

.contact-form-wrap .zcwf_button {
  border-radius: 10px !important;
  padding: .8rem 1.2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  max-width: none !important;
}

.contact-form-wrap input[type="submit"].zcwf_button {
  background: var(--cyan) !important;
  color: #000 !important;
  border: 0 !important;
}

.contact-form-wrap input[type="submit"].zcwf_button:hover {
  background: var(--cyan-hover) !important;
}

.contact-form-wrap input[type="reset"].zcwf_button {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.contact-form-wrap input[type="reset"].zcwf_button:hover {
  background: rgba(255, 255, 255, .08) !important;
}


.footer {
  border-top: 1px solid #1f2937;
  background: #000;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: var(--text-soft);
}

.noscript-note {
  margin: 0;
  padding: .8rem 1rem;
  text-align: center;
  background: #111827;
  border-top: 1px solid #374151;
  color: var(--text-muted);
}

.noscript-note a {
  color: var(--cyan);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

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

  .hero-actions {
    flex-direction: row;
  }

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

  .lead-magnet-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: center;
    gap: 2.5rem;
  }

  .lead-magnet-action {
    border-left: 1px solid rgba(148, 163, 184, .2);
    padding-left: 2rem;
  }
}

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

  .section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .client-network::before,
  .client-network::after,
  .network-scanline,
  .network-line,
  .network-packet,
  .network-hub,
  .client-node {
    animation: none;
  }
}

@media (max-width: 640px) {
  .section-testimonials,
  .lead-magnet {
    padding-block: 64px;
  }

  .client-network {
    min-height: 520px;
  }

  .network-frame-label {
    font-size: .58rem;
    letter-spacing: .1em;
  }

  .network-hub {
    width: min(170px, 48vw);
    min-height: 76px;
    padding: .8rem;
  }

  .client-node {
    width: min(112px, 29vw);
    min-height: 76px;
    padding: .55rem;
  }

  .client-node img {
    max-height: 34px;
  }

  .client-node span {
    font-size: .68rem;
  }

  .client-network-card {
    grid-template-columns: 1fr;
    width: min(320px, 100%);
    padding: .8rem .9rem;
  }

  .client-network-kicker {
    font-size: .65rem;
  }

  .client-network-card h3 {
    font-size: 1rem;
  }

  .client-network-card p:last-child {
    font-size: .88rem;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .lead-magnet-proof {
    grid-template-columns: 1fr;
  }
}

/* Service detail pages */
html.service-document {
  scroll-snap-type: none;
}

.service-page {
  background:
    radial-gradient(circle at 85% 8%, rgba(34, 211, 238, .11), transparent 24rem),
    #030712;
}

.service-page .site-header {
  background: rgba(3, 7, 18, .86);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  backdrop-filter: blur(12px);
}

.service-page .section {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.service-hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: -12rem;
  border: 1px solid rgba(34, 211, 238, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(34, 211, 238, .025), 0 0 0 10rem rgba(34, 211, 238, .018);
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.4rem;
  color: var(--text-soft);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.service-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.service-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.service-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: .92rem;
}

.service-trust li::before {
  content: "✓";
  margin-right: .45rem;
  color: var(--cyan);
  font-weight: 800;
}

.service-visual {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 22px;
  background:
    linear-gradient(rgba(148, 163, 184, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(34, 211, 238, .18), transparent 48%),
    rgba(15, 23, 42, .82);
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(34, 211, 238, .22);
  border-radius: 50%;
}

.service-visual-icon {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, .46);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(31, 41, 55, .98), rgba(3, 7, 18, .98));
  box-shadow: 0 0 45px rgba(34, 211, 238, .2);
  font-size: 4rem;
}

.service-visual-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 999px;
  background: rgba(3, 7, 18, .9);
  color: var(--text-muted);
  padding: .55rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.service-visual-tag:nth-of-type(1) {
  top: 18%;
  left: 7%;
}

.service-visual-tag:nth-of-type(2) {
  top: 20%;
  right: 6%;
}

.service-visual-tag:nth-of-type(3) {
  right: 9%;
  bottom: 16%;
}

.service-visual-tag:nth-of-type(4) {
  left: 8%;
  bottom: 17%;
}

.service-intro {
  background: var(--bg-900);
}

.service-section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.service-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.service-section-heading p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-benefits,
.service-process,
.related-services {
  display: grid;
  gap: 1.25rem;
}

.service-benefit,
.process-step,
.related-service {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(31, 41, 55, .72), rgba(17, 24, 39, .82));
  padding: 1.5rem;
}

.service-benefit::before,
.related-service::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--cyan);
  opacity: .75;
}

.service-benefit strong {
  display: block;
  margin-bottom: .65rem;
  color: var(--cyan);
  font-size: 1.15rem;
}

.service-benefit h3,
.process-step h3,
.related-service h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-benefit p,
.process-step p,
.related-service p {
  margin: .7rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-scope-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.service-scope-panel {
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 18px;
  background: rgba(17, 24, 39, .62);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.service-scope-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.service-scope-panel > p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-checklist {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding: .85rem 1rem .85rem 2.8rem;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 11px;
  background: rgba(31, 41, 55, .42);
  color: var(--text-muted);
  line-height: 1.5;
}

.service-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--cyan);
  font-weight: 800;
}

.service-side-note {
  position: sticky;
  top: 110px;
  border-top: 4px solid var(--cyan);
  border-radius: 16px;
  background: linear-gradient(145deg, #1f2937, #111827);
  padding: 1.7rem;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
}

.service-side-note .service-side-icon {
  font-size: 2.7rem;
}

.service-side-note h3 {
  margin: 1rem 0 0;
  font-size: 1.45rem;
}

.service-side-note p {
  margin: .8rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-process {
  counter-reset: service-step;
}

.process-step {
  counter-increment: service-step;
  padding-top: 4.1rem;
}

.process-step::before {
  content: "0" counter(service-step);
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .12em;
}

.service-faq {
  max-width: 900px;
}

.service-cta {
  padding-top: 40px;
}

.service-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, .32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0, rgba(34, 211, 238, .18), transparent 20rem),
    linear-gradient(135deg, #1f2937, #111827);
  padding: clamp(1.6rem, 5vw, 3rem);
}

.service-cta-card h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.service-cta-card p {
  max-width: 700px;
  margin: .9rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.related-service {
  color: var(--text);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.related-service:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .55);
}

.related-service span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--cyan);
  font-weight: 700;
}

.service-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.2rem;
}

.service-footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: .9rem;
}

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

@media (min-width: 768px) {
  .service-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .service-scope-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  }

  .service-cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 960px) {
  .service-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  }
}

@media (max-width: 767px) {
  .service-page .nav > .btn {
    display: none;
  }

  .service-hero {
    padding: 118px 0 64px;
  }

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

  .service-side-note {
    position: static;
  }
}
