:root {
  --primary: #0078D4;
  --primary-d: #005A9E;
  --primary-l: #2B88D8;
  --accent: #00B4D8;
  --accent-d: #0096B7;
  --dark: #04080F;
  --dark2: #0A1128;
  --dark3: #101D34;
  --white: #FFFFFF;
  --off: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1E293B;
  --green: #10B981;
  --red: #EF4444;
  --amber: #F59E0B;
  --card-bg: rgba(10, 17, 40, .65);
  --card-border: rgba(0, 120, 212, .08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: #E2E8F0;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E")
}

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

ul {
  list-style: none
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -.01em
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader-logo {
  font-family: 'Sora';
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -.02em
}

.preloader-logo span {
  color: var(--primary)
}

.preloader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, .06);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite
}

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

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.section-light {
  background: var(--off);
  color: var(--gray-700)
}

.section-white {
  background: var(--white);
  color: var(--gray-700)
}

.section-dark {
  background: var(--dark);
  color: #E2E8F0
}

.section-dark2 {
  background: var(--dark2);
  color: #E2E8F0
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-left.visible {
  opacity: 1;
  transform: none
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-right.visible {
  opacity: 1;
  transform: none
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s, transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-scale.visible {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .25s
}

.d4 {
  transition-delay: .3s
}

.d5 {
  transition-delay: .4s
}

/* Keyframes */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-20px)
  }
}

@keyframes morph {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes glow-soft {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 120, 212, .08)
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 120, 212, .18)
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.4)
  }
}

@keyframes slide-shine {
  from {
    transform: translateX(-100%)
  }

  to {
    transform: translateX(100%)
  }
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: .8rem;
  background: rgba(0, 120, 212, .06);
  border: 1px solid rgba(0, 120, 212, .1);
  color: var(--primary)
}

.section-tag i {
  width: 13px;
  height: 13px
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .5rem
}

.section-subtitle {
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75
}

.sub-dark {
  color: var(--gray-300)
}

.sub-light {
  color: var(--gray-400)
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: .9rem 0;
  background: transparent;
  transition: var(--transition)
}

.nav.scrolled {
  padding: .5rem 0;
  background: rgba(4, 8, 15, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.logo {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1px
}

.logo-cloud {
  color: #fff
}

.logo-tec {
  color: var(--primary)
}

.logo-digital {
  color: #fff;
  font-weight: 400;
  opacity: .55
}

.logo-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 3px;
  animation: pulse-dot 2s ease infinite
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center
}

.nav-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  font-weight: 500;
  position: relative;
  transition: color .3s;
  padding: .25rem 0
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: all .3s;
  transform: translateX(-50%);
  border-radius: 2px
}

.nav-links a:hover {
  color: #fff
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: .42rem 1.1rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .76rem !important;
  box-shadow: 0 2px 12px rgba(0, 120, 212, .2);
  transition: all .3s !important
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(0, 120, 212, .35);
  transform: translateY(-2px) !important
}

.lang-toggle {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  padding: .28rem .6rem;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'JetBrains Mono'
}

.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary)
}

/* Hamburger */
.hamburger {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: .3rem;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: all .3s;
  border-radius: 2px
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, .98);
  backdrop-filter: blur(25px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all
}

.mobile-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Sora';
  transition: color .3s
}

.mobile-menu a:hover {
  color: var(--primary)
}

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .84rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit';
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  transition: transform .6s
}

.btn:hover::before {
  transform: translateX(100%)
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 120, 212, .2)
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 120, 212, .3);
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12)
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 120, 212, .04)
}

.btn-white {
  background: #fff;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .08
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 8, 15, .6) 0%, rgba(4, 8, 15, .82) 50%, var(--dark) 100%)
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(0, 120, 212, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 120, 212, .03) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, #000 20%, transparent 100%);
  animation: gradient-shift 25s ease infinite
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 2;
  transition: transform .1s ease-out
}

.hero-orb-1 {
  width: 550px;
  height: 550px;
  background: rgba(0, 120, 212, .08);
  top: -8%;
  right: -5%;
  animation: float 10s ease-in-out infinite
}

.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(0, 180, 216, .06);
  bottom: -12%;
  left: -6%;
  animation: float 12s ease-in-out infinite 2s
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(124, 77, 255, .04);
  top: 45%;
  left: 30%;
  animation: float 8s ease-in-out infinite 4s
}

.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -3%;
  top: 18%;
  background: linear-gradient(135deg, rgba(0, 120, 212, .1), rgba(124, 77, 255, .07));
  animation: morph 12s ease-in-out infinite;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none
}

.geo-ring {
  position: absolute;
  border: 1px solid rgba(0, 120, 212, .05);
  border-radius: 50%;
  animation: spin 80s linear infinite;
  z-index: 2;
  pointer-events: none
}

.geo-ring-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  right: -10%
}

.geo-ring-2 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: 2%;
  animation-direction: reverse;
  border-color: rgba(124, 77, 255, .04)
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3.5rem;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0, 120, 212, .06);
  border: 1px solid rgba(0, 120, 212, .1);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .72rem;
  color: var(--primary-l);
  font-weight: 500;
  margin-bottom: 1.2rem;
  width: fit-content;
  animation: fadeUp .7s ease both
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .5rem;
  animation: fadeUp .7s ease .1s both
}

.hero-gradient {
  background: linear-gradient(135deg, #00E5FF, #7C4DFF, #FF6B9D);
  background-size: 300% auto;
  animation: gradient-shift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .8rem;
  animation: fadeUp .7s ease .15s both;
  font-family: 'Sora'
}

.hero-desc {
  font-size: .92rem;
  color: var(--gray-300);
  max-width: 460px;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  animation: fadeUp .7s ease .2s both
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .3s both
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  animation: fadeUp .7s ease .4s both
}

.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: var(--transition);
  cursor: default
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 212, .15)
}

.stat-number {
  font-family: 'Sora';
  font-size: 2rem;
  font-weight: 800;
  line-height: 1
}

.sn-1 {
  color: var(--primary)
}

.sn-2 {
  color: var(--accent)
}

.sn-3 {
  color: var(--green)
}

.sn-4 {
  color: var(--amber)
}

.stat-label {
  color: var(--gray-300);
  font-size: .76rem;
  margin-top: .2rem;
  font-weight: 500
}

/* STATS BAR */
.stats-bar {
  background: linear-gradient(135deg, rgba(0, 120, 212, .03), rgba(0, 180, 216, .02));
  border-top: 1px solid rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center
}

.stats-item {
  position: relative
}

.stats-big {
  font-family: 'Sora';
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1
}

.stats-label {
  color: var(--gray-300);
  font-size: .8rem;
  margin-top: .3rem;
  font-weight: 500
}

.stats-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, .05)
}

.stats-item:last-child::after {
  display: none
}

/* PARTNERS MARQUEE */
.partners {
  padding: 2.5rem 0;
  background: rgba(10, 17, 40, .4);
  border-top: 1px solid rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  overflow: hidden;
  position: relative;
  z-index: 1
}

.partners-label {
  text-align: center;
  color: var(--gray-400);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1rem
}

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite
}

.partners-track:hover {
  animation-play-state: paused
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 2.5rem;
  margin: 0 .5rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all .35s;
  min-width: 160px
}

.partner-item:hover {
  border-color: rgba(0, 120, 212, .15);
  background: rgba(0, 120, 212, .03);
  transform: scale(1.03)
}

.partner-item svg {
  height: 28px;
  width: auto;
  opacity: .6;
  transition: opacity .3s
}

.partner-item:hover svg {
  opacity: .9
}

/* VALUE PROPOSITION */
.value-section {
  padding: 5rem 0
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.value-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(0, 120, 212, .06);
  color: var(--primary);
  transition: all .4s
}

.value-icon i {
  width: 22px;
  height: 22px
}

.value-card:hover .value-icon {
  transform: scale(1.08)
}

.value-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: var(--gray-700)
}

.value-card p {
  color: var(--gray-400);
  font-size: .82rem;
  line-height: 1.6
}

/* SERVICES */
.services-section {
  padding: 5rem 0
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

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

.service-card:nth-child(1)::before {
  background: linear-gradient(90deg, #0078D4, #00B4D8)
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0078D4, #005A9E)
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, #00B4D8, #0096B7)
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, #10B981, #059669)
}

.service-card:nth-child(5)::before {
  background: linear-gradient(90deg, #F59E0B, #D97706)
}

.service-card:nth-child(6)::before {
  background: linear-gradient(90deg, #0078D4, #2B88D8)
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all .4s
}

.svc-icon i {
  width: 22px;
  height: 22px
}

.service-card:hover .svc-icon {
  transform: scale(1.08) rotate(-3deg)
}

.si-ms {
  background: rgba(0, 120, 212, .07);
  color: #0078D4
}

.si-sec {
  background: rgba(0, 120, 212, .07);
  color: #005A9E
}

.si-ai {
  background: rgba(0, 180, 216, .07);
  color: #0096B7
}

.si-dev {
  background: rgba(16, 185, 129, .07);
  color: #059669
}

.si-equip {
  background: rgba(245, 158, 11, .07);
  color: #D97706
}

.si-cloud {
  background: rgba(43, 136, 216, .07);
  color: #2B88D8
}

.service-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--gray-700)
}

.service-card p {
  color: var(--gray-400);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: .7rem
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem
}

.service-tag {
  font-size: .62rem;
  padding: .14rem .45rem;
  border-radius: 50px;
  background: var(--gray-50);
  color: var(--gray-400);
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .3s
}

.service-card:hover .service-tag {
  border-color: rgba(0, 120, 212, .1);
  color: var(--primary);
  background: rgba(0, 120, 212, .03)
}

/* M365 */
.m365-section {
  padding: 5rem 0
}

.m365-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1
}

.m365-info h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .7rem
}

.m365-sub {
  color: var(--gray-300);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.4rem
}

.m365-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
  margin-bottom: 1.4rem
}

.m365-feat {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .65rem;
  background: rgba(0, 120, 212, .04);
  border: 1px solid rgba(0, 120, 212, .06);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 500;
  transition: all .4s;
  color: #E2E8F0
}

.m365-feat:hover {
  border-color: rgba(0, 120, 212, .2);
  background: rgba(0, 120, 212, .06);
  transform: translateX(3px)
}

.m365-feat i {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0
}

.m365-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem
}

.m365-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
  transition: var(--transition);
  cursor: default
}

.m365-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 212, .15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15)
}

.m365-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  margin: 0 auto .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s
}

.m365-card-icon i {
  width: 20px;
  height: 20px
}

.m365-card:hover .m365-card-icon {
  transform: scale(1.08)
}

.mci-1 {
  background: rgba(0, 120, 212, .07);
  color: var(--primary)
}

.mci-2 {
  background: rgba(0, 180, 216, .07);
  color: var(--accent)
}

.mci-3 {
  background: rgba(0, 120, 212, .07);
  color: var(--primary-l)
}

.mci-4 {
  background: rgba(16, 185, 129, .07);
  color: var(--green)
}

.m365-card h4 {
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: .2rem
}

.m365-card p {
  color: var(--gray-300);
  font-size: .76rem;
  line-height: 1.5
}

/* CYBER */
.cyber-section {
  padding: 5rem 0
}

.cyber-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.cyber-cards {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.cyber-card {
  display: flex;
  gap: .75rem;
  padding: .9rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.cyber-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 120, 212, .1)
}

.cyber-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s
}

.cyber-icon i {
  width: 18px;
  height: 18px
}

.cyber-card:hover .cyber-icon {
  transform: rotate(-5deg) scale(1.06)
}

.cci-1 {
  background: rgba(0, 120, 212, .06);
  color: var(--primary)
}

.cci-2 {
  background: rgba(0, 90, 158, .06);
  color: var(--primary-d)
}

.cci-3 {
  background: rgba(0, 180, 216, .06);
  color: var(--accent)
}

.cci-4 {
  background: rgba(16, 185, 129, .06);
  color: var(--green)
}

.cci-5 {
  background: rgba(245, 158, 11, .06);
  color: var(--amber)
}

.cyber-text h4 {
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: .08rem;
  color: var(--gray-700)
}

.cyber-text p {
  color: var(--gray-400);
  font-size: .78rem;
  line-height: 1.5
}

.cyber-showcase {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm)
}

.cyber-showcase:hover {
  box-shadow: var(--shadow-lg)
}

/* AI */
.ai-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .9rem;
  position: relative;
  z-index: 1
}

.ai-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 120, 212, .05);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden
}

.ai-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s
}

.ai-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 120, 212, .12);
  box-shadow: 0 10px 30px rgba(0, 120, 212, .05)
}

.ai-card:hover::after {
  transform: scaleX(1)
}

.ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .7rem;
  transition: transform .4s
}

.ai-icon i {
  width: 18px;
  height: 18px
}

.ai-card:hover .ai-icon {
  transform: scale(1.08)
}

.aii-1 {
  background: rgba(0, 120, 212, .06);
  color: var(--primary)
}

.aii-2 {
  background: rgba(0, 180, 216, .06);
  color: var(--accent)
}

.aii-3 {
  background: rgba(245, 158, 11, .06);
  color: var(--amber)
}

.aii-4 {
  background: rgba(16, 185, 129, .06);
  color: var(--green)
}

.aii-5 {
  background: rgba(0, 90, 158, .06);
  color: var(--primary-d)
}

.ai-num {
  font-family: 'JetBrains Mono';
  font-size: .62rem;
  color: var(--primary-l);
  font-weight: 600;
  margin-bottom: .35rem;
  letter-spacing: 1.5px
}

.ai-card h3 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.ai-card p {
  color: var(--gray-300);
  font-size: .8rem;
  line-height: 1.6
}

/* EQUIPMENT */
.equip-section {
  padding: 5rem 0
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem
}

.equip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
  position: relative
}

.equip-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform .5s
}

.equip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 120, 212, .1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

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

.equip-img {
  width: 100%;
  height: 100px;
  border-radius: var(--radius-sm);
  margin-bottom: .7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
  display: flex;
  align-items: center;
  justify-content: center
}

.equip-img img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform .5s;
  filter: brightness(.9) contrast(1.05)
}

.equip-card:hover .equip-img img {
  transform: scale(1.06)
}

.equip-card h3 {
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: .15rem
}

.equip-card p {
  color: var(--gray-300);
  font-size: .74rem;
  line-height: 1.45
}

.equip-brands {
  display: flex;
  gap: .2rem;
  justify-content: center;
  margin-top: .4rem;
  flex-wrap: wrap
}

.equip-brand {
  font-size: .56rem;
  padding: .1rem .35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, .04);
  color: var(--gray-300);
  font-weight: 700;
  font-family: 'JetBrains Mono';
  letter-spacing: .5px
}

/* DEV */
.dev-section {
  padding: 5rem 0
}

.dev-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.dev-info h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  margin-bottom: .6rem;
  line-height: 1.15;
  color: var(--gray-700)
}

.dev-sub {
  color: var(--gray-400);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.3rem
}

.dev-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  margin-bottom: 1.3rem
}

.dev-feat {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .65rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 500;
  transition: all .4s;
  color: var(--gray-600)
}

.dev-feat:hover {
  border-color: var(--primary);
  background: rgba(0, 120, 212, .03);
  transform: translateX(3px)
}

.dev-feat i {
  width: 13px;
  height: 13px;
  color: var(--primary);
  flex-shrink: 0
}

.dev-timeline {
  position: relative
}

.timeline-line {
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px
}

.timeline-step {
  display: flex;
  gap: .9rem;
  padding: .7rem 0;
  position: relative
}

.timeline-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-weight: 700;
  font-size: .72rem;
  color: var(--primary);
  z-index: 1;
  transition: all .4s
}

.timeline-step:hover .timeline-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 120, 212, .15)
}

.timeline-text h4 {
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: .05rem;
  color: var(--gray-700)
}

.timeline-text p {
  color: var(--gray-400);
  font-size: .76rem
}

/* CASES */
/* CASA DESARROLLADORA */
.dev-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.dev-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, .06), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.dev-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start
}

.dev-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--gray-700)
}

.dev-desc {
  color: var(--gray-400);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem
}

.dev-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem
}

.dev-svc {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all .3s ease
}

.dev-svc:hover {
  border-color: var(--primary);
  background: rgba(0, 120, 212, .04);
  transform: translateX(5px)
}

.dev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0
}

/* Timeline */
.dev-timeline {
  position: relative;
  padding-left: 0
}

.tl-line {
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), var(--green));
  border-radius: 2px
}

.tl-step {
  display: flex;
  gap: 1.3rem;
  padding: 1rem 0;
  position: relative
}

.tl-num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary);
  z-index: 1;
  transition: all .4s ease;
  box-shadow: 0 4px 15px rgba(0, 120, 212, .1)
}

.tl-step:hover .tl-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 120, 212, .3);
  transform: scale(1.1)
}

.tl-text h4 {
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .2rem;
  color: var(--gray-700)
}

.tl-text p {
  color: var(--gray-400);
  font-size: .83rem;
  line-height: 1.6
}


/* COVERAGE */
.coverage-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.coverage-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 120, 212, .03) 0%, transparent 70%);
  pointer-events: none
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center
}

.coverage-info-panel {
  position: relative
}

.coverage-info-panel h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: .8rem;
  line-height: 1.15
}

.coverage-desc {
  color: var(--gray-300);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem
}

.coverage-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.coverage-stat {
  text-align: center
}

.coverage-stat-num {
  font-family: 'Sora';
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1
}

.coverage-stat-label {
  color: var(--gray-400);
  font-size: .7rem;
  margin-top: .2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem
}

.coverage-city {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(0, 120, 212, .04);
  border: 1px solid rgba(0, 120, 212, .08);
  padding: .32rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary-l);
  transition: all .3s;
  cursor: default
}

.coverage-city:hover {
  border-color: var(--primary);
  background: rgba(0, 120, 212, .08);
  transform: scale(1.04)
}

.coverage-city small {
  font-size: .6rem;
  color: var(--accent);
  font-weight: 700
}

.coverage-city-more {
  background: rgba(0, 180, 216, .06);
  border-color: rgba(0, 180, 216, .12);
  color: var(--accent)
}

.city-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease infinite
}

.city-dot.cd-hq {
  background: var(--primary);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(0, 120, 212, .4)
}

.coverage-map-container {
  position: relative
}

.map-wrapper {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
  transition: all .5s
}

.map-wrapper:hover {
  border-color: rgba(0, 120, 212, .12);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .2)
}

.map-glow {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 120, 212, .06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%
}

.colombia-svg {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block
}

.colombia-outline {
  transition: all .8s
}

.map-wrapper:hover .colombia-outline {
  stroke: rgba(0, 120, 212, .25);
  fill: rgba(0, 120, 212, .05)
}

.map-city-group {
  transition: opacity .3s
}

@keyframes map-pulse {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: .8;
    transform: scale(1.2)
  }
}

/* ABOUT */
.about-section {
  padding: 5rem 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.about-feat {
  display: flex;
  gap: .7rem;
  padding: .85rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: var(--transition)
}

.about-feat:hover {
  transform: translateX(5px);
  border-color: rgba(0, 120, 212, .1)
}

.about-feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s
}

.about-feat-icon i {
  width: 17px;
  height: 17px
}

.about-feat:hover .about-feat-icon {
  transform: rotate(-5deg) scale(1.06)
}

.afi-1 {
  background: rgba(0, 120, 212, .06);
  color: var(--primary)
}

.afi-2 {
  background: rgba(0, 180, 216, .06);
  color: var(--accent)
}

.afi-3 {
  background: rgba(245, 158, 11, .06);
  color: var(--amber)
}

.afi-4 {
  background: rgba(16, 185, 129, .06);
  color: var(--green)
}

.about-feat-text h4 {
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: .08rem
}

.about-feat-text p {
  color: var(--gray-300);
  font-size: .78rem;
  line-height: 1.5
}

.about-showcase {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all .5s
}

.about-showcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12)
}

.showcase-number {
  font-family: 'Sora';
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1
}

.showcase-label {
  font-family: 'Sora';
  font-size: .95rem;
  font-weight: 700;
  margin-top: .15rem
}

.showcase-desc {
  color: var(--gray-300);
  margin-top: .15rem;
  font-size: .84rem
}

/* CTA */
.cta-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #04080F, #0A1128)
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 120, 212, .03), transparent 40%)
}

.cta-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 120, 212, .04), rgba(0, 180, 216, .02));
  border: 1px solid rgba(0, 120, 212, .06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: glow-soft 4s ease infinite
}

.cta-box h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: .5rem
}

.cta-box p {
  color: var(--gray-300);
  font-size: .92rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.cta-buttons {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap
}

/* DIAGNOSTIC CTA */
.diagnostic-section {
  padding: 4rem 0;
  background: var(--white)
}

.diagnostic-box {
  background: linear-gradient(135deg, rgba(0, 120, 212, .03), rgba(0, 180, 216, .01));
  border: 1px solid rgba(0, 120, 212, .08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center
}

.diagnostic-box h2 {
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--gray-700)
}

.diagnostic-box p {
  color: var(--gray-400);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto
}

/* CONTACT */
.contact-section {
  padding: 5rem 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .6rem;
  border-radius: 10px;
  transition: all .3s
}

.contact-item:hover {
  background: rgba(255, 255, 255, .02)
}

.contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 9px;
  background: rgba(0, 120, 212, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s
}

.contact-icon i {
  width: 16px;
  height: 16px;
  color: var(--primary)
}

.contact-item:hover .contact-icon {
  transform: scale(1.04)
}

.contact-text h4 {
  font-weight: 600;
  font-size: .8rem;
  margin-bottom: .08rem
}

.contact-text p,
.contact-text a {
  color: var(--gray-300);
  font-size: .78rem;
  transition: color .3s
}

.contact-text a:hover {
  color: var(--primary)
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(8px)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .18rem
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-300)
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: .55rem .75rem;
  color: #E2E8F0;
  font-family: 'Outfit';
  font-size: .8rem;
  transition: all .4s;
  outline: 0
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, .05)
}

.form-group textarea {
  min-height: 60px;
  resize: vertical
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center
}

.form-submit {
  margin-top: .6rem;
  width: 100%;
  padding: .7rem;
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .84rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit';
  position: relative;
  overflow: hidden
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  transform: translateX(-100%);
  transition: transform .6s
}

.form-submit:hover {
  box-shadow: 0 4px 18px rgba(0, 120, 212, .2);
  transform: translateY(-1px)
}

.form-submit:hover::before {
  transform: translateX(100%)
}

/* FOOTER */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .03);
  padding: 2.5rem 0 1rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem
}

.footer-brand .logo {
  margin-bottom: .5rem
}

.footer-brand p {
  color: var(--gray-400);
  font-size: .78rem;
  line-height: 1.65;
  max-width: 240px
}

.footer-col h4 {
  font-family: 'Sora';
  font-weight: 700;
  font-size: .72rem;
  color: #E2E8F0;
  margin-bottom: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: .78rem;
  padding: .18rem 0;
  transition: all .3s
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(2px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .03);
  padding-top: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: .7rem
}

/* FLOATING ELEMENTS */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(37, 211, 102, .25);
  transition: all .4s;
  cursor: pointer;
  animation: float 3s ease-in-out infinite
}

.whatsapp-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 5px 18px rgba(37, 211, 102, .35)
}

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

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px)
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none
}

.scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary)
}

.scroll-top i {
  width: 14px;
  height: 14px;
  color: var(--gray-300)
}

.scroll-top:hover i {
  color: #fff
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 8, 15, .95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(0, 120, 212, .08);
  padding: .6rem 0;
  z-index: 997;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.sticky-cta.show {
  transform: translateY(0)
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.sticky-cta-text {
  font-size: .8rem;
  color: var(--gray-300);
  font-weight: 500
}

.sticky-cta-text strong {
  color: #fff
}

.sticky-cta-actions {
  display: flex;
  gap: .5rem
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E")
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-desc {
    margin: 0 auto 1.8rem
  }

  .hero-actions {
    justify-content: center
  }

  .hero-badge {
    margin: 0 auto 1.2rem
  }

  .hero-stats {
    max-width: 420px;
    margin: 1.2rem auto 0
  }

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .m365-layout,
  .cyber-layout,
  .dev-layout,
  .about-grid,
  .contact-grid,
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .equip-grid {
    grid-template-columns: repeat(3, 1fr)
  }



  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .stats-item:nth-child(2)::after {
    display: none
  }

  .value-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  .services-grid,
  .ai-grid {
    grid-template-columns: 1fr
  }

  .dev-services-grid {
    grid-template-columns: 1fr
  }

  .equip-grid {
    grid-template-columns: 1fr 1fr
  }

  .m365-features,
  .dev-features,
  .form-grid,
  .m365-cards {
    grid-template-columns: 1fr
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  section {
    padding: 3.5rem 0
  }

  .cta-box {
    padding: 1.8rem 1.2rem
  }

  .sticky-cta-text {
    display: none
  }

  .sticky-cta-inner {
    justify-content: center
  }

  .value-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 1rem
  }

  .hero-stats,
  .stats-grid {
    grid-template-columns: 1fr
  }

  .equip-grid {
    grid-template-columns: 1fr
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .hero h1 {
    font-size: 1.7rem
  }

  .coverage-cities {
    justify-content: center
  }
}