﻿/* EQUINET SHARED CSS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --nd: #040b1a;
  --n: #060e24;
  --nm: #0a1628;
  --nb: #0d1b4b;
  --el: #1e6fcc;
  --c: #00c8ff;
  --cb: #00e5ff;
  --s: #b8c8d8;
  --g: #ffd600;
  --w: #ffffff;
  --ok: #00d68f;
  --wa: #25d366;
  --sh1: 0 2px 12px rgba(0, 200, 255, .08);
  --sh2: 0 8px 32px rgba(0, 200, 255, .15);
  --sh3: 0 20px 60px rgba(0, 200, 255, .25)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--n);
  color: var(--w);
  overflow-x: hidden;
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--nd)
}

::-webkit-scrollbar-thumb {
  background: var(--c)
}

*:focus-visible {
  outline: 2px solid var(--c);
  outline-offset: 2px
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55
}

#cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--c);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
  will-change: transform
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 200, 255, .45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .3s, height .3s
}

body.hov #cursor-dot {
  width: 18px;
  height: 18px
}

body.hov #cursor-ring {
  width: 50px;
  height: 50px;
  border-color: rgba(0, 200, 255, .7)
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05
}

.mono {
  font-family: 'JetBrains Mono', monospace
}

.cyan {
  color: var(--c)
}

.gold {
  color: var(--g)
}

.glow {
  color: var(--c);
  text-shadow: 0 0 60px rgba(0, 200, 255, .6), 0 0 120px rgba(0, 200, 255, .3)
}

.muted {
  color: rgba(255, 255, 255, .4)
}

.silver {
  color: var(--s)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(12px)
  }
}

@keyframes pulse2 {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 255, .4)
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 200, 255, 0)
  }
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-left.vis {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-right.vis {
  opacity: 1;
  transform: translateX(0)
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s ease, transform .6s ease
}

.reveal-scale.vis {
  opacity: 1;
  transform: scale(1)
}

.sec-ey {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--c);
  margin-bottom: 16px
}

.sec-ey::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c);
  flex-shrink: 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  transition: all .25s ease;
  cursor: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-c {
  background: var(--c);
  color: var(--n);
  padding: 16px 44px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%)
}

.btn-c:hover {
  background: #fff;
  box-shadow: var(--sh3)
}

.btn-o {
  background: transparent;
  color: var(--c);
  border: 1px solid rgba(0, 200, 255, .4);
  padding: 15px 43px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%)
}

.btn-o:hover {
  background: rgba(0, 200, 255, .08);
  border-color: var(--c)
}

.btn-gold {
  background: var(--g);
  color: var(--n);
  padding: 16px 44px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%)
}

.btn-gold:hover {
  background: #ffe033;
  box-shadow: 0 0 40px rgba(255, 214, 0, .5)
}

.btn-wa {
  background: #25d366;
  color: #fff;
  padding: 16px 44px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%)
}

.btn-wa:hover {
  background: #20bd5a;
  box-shadow: 0 0 40px rgba(37, 211, 102, .5)
}

.btn-wa-hero {
  background: #25d366;
  color: #fff;
  padding: 22px 56px;
  font-size: 15px;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%)
}

.btn-wa-hero:hover {
  background: #20bd5a;
  box-shadow: 0 0 60px rgba(37, 211, 102, .6)
}

.btn-sm {
  padding: 10px 24px;
  font-size: 11px
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 15px 43px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08)
}

.wa-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  min-height: 76px;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent
}

#nav.scrolled {
  background: rgba(4, 11, 26, .95);
  backdrop-filter: blur(28px);
  border-bottom-color: rgba(0, 200, 255, .12)
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

@keyframes logoEntry {
  0% { opacity: 0; transform: scale(0.5) translateY(-20px); filter: drop-shadow(0 0 0 rgba(0, 200, 255, 0)); }
  50% { filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.8)); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.3)); }
}

@keyframes pageLoadLogo {
  0% { opacity: 0; transform: scale(0.3); filter: drop-shadow(0 0 0 rgba(0, 200, 255, 0)); }
  30% { opacity: 1; transform: scale(1.2); filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.9)); }
  70% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 15px rgba(0, 200, 255, 0.5)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.3)); }
}

.nav-logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
  animation: pageLoadLogo 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, 0.3);
  color: var(--c);
  transition: all 0.3s ease;
}

.nav-social:hover {
  background: rgba(0, 200, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.nav-social svg {
  width: 18px;
  height: 18px;
}

.nav-brand:hover .nav-logo-img {
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.6))
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  position: relative;
  transition: color .3s;
  white-space: nowrap
}

.nav-link:hover,
.nav-link.active {
  color: var(--c)
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c);
  transition: width .3s
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.nav-services-wrap {
  position: relative
}

.nav-drop-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  transition: transform .3s;
  vertical-align: middle
}

.nav-services-wrap:hover .nav-drop-arrow {
  transform: rotate(180deg)
}

.mega-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  background: rgba(4, 11, 26, .98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 200, 255, .15);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: opacity .25s, transform .25s;
  transform: translateX(-50%) translateY(-8px)
}

.nav-services-wrap:hover .mega-drop,
.mega-drop:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 200, 255, .06);
  transition: background .2s
}

.mega-item:hover {
  background: rgba(0, 200, 255, .05)
}

.mega-item:nth-child(odd) {
  border-right: 1px solid rgba(0, 200, 255, .06)
}

.mega-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 200, 255, .2);
  background: rgba(0, 200, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mega-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.mega-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  color: #fff;
  display: block;
  transition: color .2s
}

.mega-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
  display: block
}

.mega-item:hover .mega-name {
  color: var(--c)
}

.mega-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(0, 200, 255, .1);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c);
  transition: background .2s;
  display: block
}

.mega-footer:hover {
  background: rgba(0, 200, 255, .07)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.nav-wa-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, .4);
  padding: 8px 14px;
  transition: all .25s;
  white-space: nowrap
}

.nav-wa-btn:hover {
  background: #25d366;
  color: #fff
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px
}

.hline {
  width: 24px;
  height: 2px;
  background: var(--c);
  transition: all .3s;
  display: block
}

#drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: rgba(4, 11, 26, .98);
  backdrop-filter: blur(24px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
  padding: 90px 40px 40px;
  gap: 6px;
  border-left: 1px solid rgba(0, 200, 255, .12);
  overflow-y: auto
}

#drawer.open {
  transform: translateX(0)
}

.drawer-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 200, 255, .07);
  transition: color .2s;
  display: block
}

.drawer-link:hover {
  color: var(--c)
}

.drawer-service-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block
}

.drawer-service-link:hover {
  color: var(--c)
}

.drawer-cta-area {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px
}

.drawer-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 200, 255, .07);
  width: 100%;
  text-align: left;
  transition: color .2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  cursor: none
}

.drawer-toggle:hover {
  color: var(--c)
}

.drawer-toggle-icon {
  font-size: 20px;
  transition: transform .3s
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.drawer-submenu.open {
  max-height: 600px
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5)
}

#overlay.open {
  display: block
}

.breadcrumb {
  padding: 12px 70px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
  background: rgba(4, 11, 26, .5);
  border-bottom: 1px solid rgba(0, 200, 255, .06);
  position: relative;
  z-index: 2
}

.breadcrumb a {
  color: rgba(255, 255, 255, .3);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--c)
}

.breadcrumb .bc-sep {
  margin: 0 8px;
  opacity: .4
}

.breadcrumb .bc-cur {
  color: var(--c)
}

#wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px
}

#wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  animation: pulseWA 2s infinite;
  transition: transform .25s
}

#wa-float-btn:hover {
  transform: scale(1.12)
}

#wa-float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

#wa-float-tip {
  background: var(--nd);
  border: 1px solid rgba(0, 200, 255, .15);
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none
}

#wa-float:hover #wa-float-tip {
  opacity: 1;
  transform: translateX(0)
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--n);
  padding-top: 130px;
  padding-bottom: 200px
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.2) saturate(1.5)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 11, 26, .95) 0%, rgba(6, 14, 36, .85) 50%, rgba(13, 27, 75, .7) 100%)
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 200, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 50%, transparent 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 70px
}

.hero-100 {
  height: 100vh;
  min-height: 780px
}

.hero-65 {
  height: 65vh;
  min-height: 560px
}

.hero-60 {
  height: 60vh;
  min-height: 500px
}

.hero-50 {
  height: 50vh;
  min-height: 420px
}

.hero-45 {
  height: 45vh;
  min-height: 380px
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--c);
  border: 1px solid rgba(0, 200, 255, .3);
  padding: 7px 18px;
  background: rgba(0, 200, 255, .04);
  margin-bottom: 20px
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--c);
  border-radius: 50%;
  animation: pulse2 2s infinite;
  flex-shrink: 0
}

.h-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .3em;
  margin-bottom: 14px
}

.h-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px
}

.h-trust-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 6px
}

.h-trust-item::before {
  content: '';
  color: var(--c);
  font-weight: 900
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(0, 200, 255, .08);
  border-bottom: 1px solid rgba(0, 200, 255, .08);
  padding: 13px 0;
  background: var(--nd)
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite
}

.ticker-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(0, 200, 255, .45);
  white-space: nowrap;
  padding: 0 22px
}

.ticker-sep {
  color: rgba(0, 200, 255, .2);
  padding: 0 6px
}

.svc-card {
  background: var(--nm);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3)
}

.svc-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--nb), var(--el))
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(1.3);
  transition: transform .4s ease
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05)
}

.svc-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c);
  border: 1px solid rgba(0, 200, 255, .4);
  padding: 3px 8px;
  background: rgba(4, 11, 26, .8)
}

.svc-card-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--n);
  background: var(--g);
  padding: 3px 10px
}

.svc-card-body {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.svc-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 200, 255, .2);
  background: rgba(0, 200, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .3s
}

.svc-card:hover .svc-card-icon {
  background: rgba(0, 200, 255, .15)
}

.svc-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 10px
}

.svc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1
}

.svc-card-benefits {
  list-style: none;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.svc-card-benefits li {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: flex-start;
  gap: 6px
}

.svc-card-benefits li::before {
  content: '';
  color: var(--c);
  font-weight: 900;
  flex-shrink: 0
}

.svc-card-foot {
  border-top: 1px solid rgba(0, 200, 255, .08);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.svc-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .1em
}

.svc-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.svc-card-actions .btn {
  font-size: 11px;
  padding: 10px 16px;
  clip-path: none;
  flex: 1
}

.wa-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #25d366;
  transition: color .2s;
  margin-top: 4px
}

.wa-link:hover {
  color: #20bd5a
}

.wa-link svg {
  width: 14px;
  height: 14px;
  fill: #25d366
}

.ben-card {
  background: var(--nm);
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s
}

.ben-card:hover {
  border-left-color: var(--c);
  transform: translateY(-4px);
  box-shadow: var(--sh2)
}

.ben-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 200, 255, .2);
  background: rgba(0, 200, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.ben-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ben-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px
}

.ben-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.65
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 200, 255, .07)
}

.spec-item {
  background: var(--nm);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.spec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .3)
}

.spec-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c)
}

.accord-item {
  border-bottom: 1px solid rgba(0, 200, 255, .08)
}

.accord-item.open {
  border-bottom-color: rgba(0, 200, 255, .2)
}

.accord-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: none;
  gap: 16px
}

.accord-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .03em
}

.accord-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 200, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s, border-color .3s;
  color: var(--c);
  font-size: 18px;
  font-weight: 300;
  line-height: 1
}

.accord-item.open .accord-icon {
  transform: rotate(45deg);
  background: rgba(0, 200, 255, .1);
  border-color: var(--c)
}

.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.accord-body-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7
}

.testi-card {
  background: var(--nm);
  padding: 36px 32px;
  border-top: 3px solid var(--c);
  position: relative
}

.testi-quote {
  font-size: 3rem;
  color: var(--c);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic
}

.testi-text {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--el), var(--c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--n);
  flex-shrink: 0
}

.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase
}

.testi-company {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px
}

.stars {
  color: #ffd600;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16% + 36px);
  right: calc(16% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .3), transparent)
}

.step {
  padding: 40px 30px;
  text-align: center
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: var(--c);
  opacity: .6;
  letter-spacing: .14em;
  margin-bottom: 16px;
  display: block
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0, 200, 255, .2);
  background: rgba(0, 200, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.step-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 10px
}

.step p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.6
}

.stat-big {
  text-align: center;
  padding: 40px 24px
}

.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--c);
  text-shadow: 0 0 30px rgba(0, 200, 255, .4);
  line-height: 1;
  margin-bottom: 8px
}

.stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .14em
}

.comp-table {
  width: 100%;
  border-collapse: collapse
}

.comp-table th,
.comp-table td {
  padding: 16px 24px;
  border: 1px solid rgba(0, 200, 255, .08);
  text-align: center;
  font-size: 14px
}

.comp-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--nd)
}

.comp-table td:first-child {
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4)
}

.comp-table .col-feat {
  background: rgba(0, 200, 255, .05);
  border-color: rgba(0, 200, 255, .2)
}

.comp-table .col-feat th {
  color: var(--c)
}

.comp-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, .02)
}

.timeline {
  position: relative;
  padding-left: 60px
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c), transparent)
}

.tl-item {
  position: relative;
  margin-bottom: 40px
}

.tl-dot {
  position: absolute;
  left: -47px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 14px rgba(0, 200, 255, .6)
}

.tl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c);
  margin-bottom: 4px
}

.tl-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 6px
}

.tl-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.6
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0
}

.partner-logo {
  padding: 24px 40px;
  border: 1px solid rgba(0, 200, 255, .06);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  transition: color .3s
}

.partner-logo:hover {
  color: rgba(0, 200, 255, .5)
}

.cf-field {
  margin-bottom: 14px
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: rgba(0, 200, 255, .03);
  border: 1px solid rgba(0, 200, 255, .15);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  appearance: none;
  border-radius: 0
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300c8ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(0, 200, 255, .03)
}

.cf-field select option {
  background: #0a1628;
  color: #fff
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--c);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, .08)
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(255, 255, 255, .2)
}

.cf-field textarea {
  resize: none;
  height: 110px
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

footer {
  background: var(--nd);
  border-top: 1px solid rgba(0, 200, 255, .12)
}

.footer-top {
  padding: 60px 70px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 200, 255, .06)
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px
}

.footer-logo-wrap img {
  height: 70px;
  object-fit: contain
}

.footer-co-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--c);
  text-shadow: 0 0 30px rgba(0, 200, 255, .3)
}

.footer-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 28px
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.footer-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  border: 1px solid rgba(0, 200, 255, .1);
  padding: 8px 18px;
  transition: border-color .3s, color .3s
}

.footer-pill:hover {
  border-color: rgba(0, 200, 255, .3);
  color: rgba(255, 255, 255, .7)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 50px 70px
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  margin-bottom: 16px
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 9px;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--c)
}

.footer-wa-band {
  text-align: center;
  padding: 40px 70px;
  border-top: 1px solid rgba(0, 200, 255, .06);
  border-bottom: 1px solid rgba(0, 200, 255, .06)
}

.footer-wa-band p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px
}

.footer-wa-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .25);
  margin-top: 12px
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  flex-wrap: wrap;
  gap: 10px
}

.footer-bar span,
.footer-bar a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .2)
}

.footer-bar a:hover {
  color: var(--c)
}

.sec {
  padding: 120px 70px
}

.sec-alt {
  background: var(--nm)
}

.sec-dark {
  background: var(--nd)
}

.sec-head {
  margin-bottom: 60px
}

.sec-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px
}

.sec-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  max-width: 520px;
  line-height: 1.7
}

.sec-center {
  text-align: center
}

.sec-center .sec-ey {
  justify-content: center
}

.sec-center .sec-ey::before {
  display: none
}

.sec-center p {
  margin: 0 auto
}

.contact-opt {
  border: 1px solid rgba(0, 200, 255, .15);
  padding: 40px 32px;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.contact-opt.wa-opt {
  border-color: rgba(37, 211, 102, .3)
}

.contact-opt.wa-opt:hover {
  border-color: #25d366;
  box-shadow: 0 0 40px rgba(37, 211, 102, .12)
}

.contact-opt:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2)
}

.contact-opt h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase
}

.contact-opt p {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6
}

.contact-opt-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  background: rgba(37, 211, 102, .1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, .4)
}

.confirm-box {
  display: none;
  border: 1px solid rgba(0, 200, 255, .3);
  background: rgba(0, 200, 255, .05);
  padding: 36px;
  text-align: center
}

.confirm-box.show {
  display: block
}

.rel-card {
  background: var(--nm);
  padding: 28px 24px;
  border-top: 2px solid transparent;
  transition: border-color .3s, transform .3s
}

.rel-card:hover {
  border-top-color: var(--c);
  transform: translateY(-4px)
}

.rel-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  margin: 14px 0 8px
}

.rel-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-bottom: 14px
}

.rel-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 200, 255, .2);
  background: rgba(0, 200, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center
}

.rel-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.scroll-ind {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3
}

.scroll-ind span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .3)
}

.scroll-arr {
  width: 20px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px
}

.scroll-arr::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--c);
  border-radius: 2px;
  animation: bounceY 1.5s ease-in-out infinite
}

.prod-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 70px;
  background: var(--nd);
  border-top: 1px solid rgba(0, 200, 255, .08)
}

.prod-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px
}

.prod-cta-right .phone-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em
}

.prod-cta-right .resp-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(37, 211, 102, .5)
}

.prod-cta-right .form-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(0, 200, 255, .5);
  transition: color .2s
}

.prod-cta-right .form-link:hover {
  color: var(--c)
}

.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.filter-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(0, 200, 255, .2);
  color: rgba(255, 255, 255, .45);
  background: transparent;
  cursor: none;
  transition: all .2s
}

.filter-tab.active {
  background: var(--c);
  color: var(--n);
  border-color: var(--c)
}

.filter-tab:hover:not(.active) {
  color: var(--c);
  border-color: var(--c)
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--nm);
  transition: transform .3s
}

.team-card:hover {
  transform: translateY(-6px)
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--el), var(--c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--n);
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(0, 200, 255, .3)
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 4px
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--c);
  letter-spacing: .1em;
  margin-bottom: 10px
}

.team-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

.uc-card {
  background: var(--nm);
  padding: 28px 24px;
  border: 1px solid rgba(0, 200, 255, .06);
  transition: border-color .3s
}

.uc-card:hover {
  border-color: rgba(0, 200, 255, .2)
}

.uc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px
}

.uc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.6
}

.uc-benefit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--c);
  margin-top: 10px;
  letter-spacing: .06em;
  display: block
}

.check-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px
}

.check-circle {
  fill: none;
  stroke: var(--c);
  stroke-width: 2;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCheck 1s .3s forwards ease-out
}

.check-mark {
  fill: none;
  stroke: var(--c);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck .6s .8s forwards ease-out
}

.svc-grid {
  padding-top: 6px
}

.scroll-arr::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--c);
  border-radius: 2px;
  animation: bounceY 1.5s ease-in-out infinite
}

.prod-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 70px;
  background: var(--nd);
  border-top: 1px solid rgba(0, 200, 255, .08)
}

.prod-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px
}

.prod-cta-right .phone-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em
}

.prod-cta-right .resp-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(37, 211, 102, .5)
}

.prod-cta-right .form-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(0, 200, 255, .5);
  transition: color .2s
}

.prod-cta-right .form-link:hover {
  color: var(--c)
}

.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.filter-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(0, 200, 255, .2);
  color: rgba(255, 255, 255, .45);
  background: transparent;
  cursor: none;
  transition: all .2s
}

.filter-tab.active {
  background: var(--c);
  color: var(--n);
  border-color: var(--c)
}

.filter-tab:hover:not(.active) {
  color: var(--c);
  border-color: var(--c)
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--nm);
  transition: transform .3s
}

.team-card:hover {
  transform: translateY(-6px)
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--el), var(--c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--n);
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(0, 200, 255, .3)
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 4px
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--c);
  letter-spacing: .1em;
  margin-bottom: 10px
}

.team-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

.uc-card {
  background: var(--nm);
  padding: 28px 24px;
  border: 1px solid rgba(0, 200, 255, .06);
  transition: border-color .3s
}

.uc-card:hover {
  border-color: rgba(0, 200, 255, .2)
}

.uc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px
}

.uc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.6
}

.uc-benefit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--c);
  margin-top: 10px;
  letter-spacing: .06em;
  display: block
}

.check-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px
}

.check-circle {
  fill: none;
  stroke: var(--c);
  stroke-width: 2;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCheck 1s .3s forwards ease-out
}

.check-mark {
  fill: none;
  stroke: var(--c);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck .6s .8s forwards ease-out
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ==========================================
   LOADER â€” Restored & Scaled (v1.5)
   ========================================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--nd);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 400px; /* PC Standard */
  animation: loaderEntry 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, logoPulse 2s 1.2s infinite ease-in-out;
}
@keyframes loaderEntry {
  0% { opacity: 0; transform: scale(0.3); filter: drop-shadow(0 0 0 rgba(0,200,255,0)); }
  60% { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 40px rgba(0,200,255,0.9)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 20px rgba(0,200,255,0.4)); }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0,200,255,0.3)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 35px rgba(0,200,255,0.7)); }
}
#loader::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.12);
  animation: loaderRing 2.5s infinite ease-in-out;
}
@keyframes loaderRing {
  0%, 100% { transform: scale(0.9); opacity: 0.3; border-color: rgba(0,200,255,0.12); }
  50% { transform: scale(1.15); opacity: 0.7; border-color: rgba(0,200,255,0.35); }
}

/* ==========================================
   CONSOLIDATED RESPONSIVE STYLES (v1.5)
   ========================================== */

/* Medium Screens / Tablets */
@media (max-width: 1024px) {
  .grid3 { grid-template-columns: repeat(2, 1fr) !important; }
  .stats6 { grid-template-columns: repeat(3, 1fr) !important; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

/* Global Fix for Mobile Overflow */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Mobile Screens â€” THE MAIN RESPONSIVE BLOCK (v3.0) */
@media (max-width: 767px) {
  /* Navigation â€” Balanced Presence */
  #nav {
    height: 100px !important;
    min-height: 100px !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(4, 11, 26, .99) !important;
    backdrop-filter: blur(28px) !important;
    border-bottom: 1px solid rgba(0, 200, 255, .15) !important;
    width: 100% !important;
  }
  .nav-logo-img {
    height: 80px !important; /* Notable & Sharp */
    width: auto !important;
    min-height: 80px !important;
    max-height: 85px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 15px rgba(0,200,255,0.4)) !important;
  }
  .hamburger {
    display: flex !important;
    transform: scale(1.5) !important;
  }
  .nav-center, .nav-right, .nav-social { display: none !important; }

  /* Hero Section â€” Native Rhythm */
  section.hero, .hero-100 { 
    padding-top: 130px;
  padding-bottom: 200px !important; 
    padding-bottom: 60px !important;
    padding-left: 16px !important;  /* Thinner margins = wider text */
    padding-right: 16px !important;
    height: auto !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  .hero-content {
    margin-bottom: 40px !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .hero-h1 { 
    font-size: clamp(2.4rem, 10.5vw, 3.4rem) !important; /* Bigger */
    margin-bottom: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.01em !important;
    text-transform: uppercase !important;
  }
  .h-desc { 
    font-size: 17px !important; /* Bigger */
    line-height: 1.75 !important;
    margin-bottom: 40px !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    padding: 22px 30px !important;
    font-size: 14px !important;
  }

  /* Stats Bar â€” Hidden on Mobile (v3.2, handled in internal <style>) */

  /* MANDATORY 1FR GRIDS â€” Prevents "Achatamiento" */
  .grid3, .stats6, .steps, .testi-grid, .footer-grid, .svc-grid, .team-grid, .ben-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    width: 100% !important;
  }

  /* Global Breathing Room */
  .sec, section { padding: 100px 24px !important; }
  
  /* Indicators */
  .scroll-ind { display: none !important; }

  /* Footer Refinement */
  .footer-bar { padding: 40px 24px !important; flex-direction: column !important; text-align: center !important; gap: 15px !important; }
}

/* Premium Testimonial Functional Classes */
.testi-carousel-container { max-width: 1000px; margin: 40px auto; perspective: 1000px; overflow: hidden; }
.testi-carousel-track { display: flex; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.testi-slide { min-width: 100%; padding: 20px; opacity: 0.15; transform: scale(0.9); transition: all 0.8s ease; }
.testi-slide.active { opacity: 1; transform: scale(1); }
.testi-card-premium {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.testi-dots, .testi-nav, .testi-prev, .testi-next { display: none !important; }
