/* ────────────────────────────────────────────────────────────
   RESET
──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ────────────────────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:         #06080f;
  --navy-2:       #09111f;
  --navy-3:       #0c1628;
  --blue:         #1a6aed;
  --blue-b:       #3b8bff;
  --blue-faint:   rgba(26,106,237,.08);
  --blue-bd:      rgba(59,139,255,.16);
  --blue-bd-h:    rgba(59,139,255,.50);
  --white:        #ffffff;
  --off-white:    #bfcfea;
  --gray-400:     #94a3b8;      /* text-gray-400 equivalent */
  --muted:        #546a86;
  --glass:        rgba(9,17,31,.78);
  --glass-bd:     rgba(59,139,255,.13);
  --glass-bd-h:   rgba(59,139,255,.36);
  --green:        #00e07a;
  --amber:        #f5a500;
  --wa:           #25d366;
  --font:         'Plus Jakarta Sans', sans-serif;
  --r:            14px;
  --r-lg:         20px;
  /* Refined Electric Blue glow: spread 4px, blur 10px */
  --card-glow:    0 0 0 1px rgba(59,139,255,.30),
                  0 4px 10px  rgba(0,150,255,.22),
                  0 12px 32px rgba(26,106,237,.14);
}

/* ────────────────────────────────────────────────────────────
   BASE
──────────────────────────────────────────────────────────── */
body {
  /* Radial depth: lighter centre fades to deep black edges */
  background:
    radial-gradient(
      ellipse 90% 65% at 50% 0%,
      rgba(10,22,52,.80) 0%,
      rgba(6,8,15,1)    58%)
    var(--navy);
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ────────────────────────────────────────────────────────────
   UTILITIES
──────────────────────────────────────────────────────────── */
.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap2    { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-md { max-width: 860px;  margin: 0 auto; padding: 0 24px; }

.grid-bg {
  background-image:
    linear-gradient(rgba(59,139,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,139,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-bd), transparent);
}

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-b); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.1; color: var(--white); margin-bottom: 14px;
}

/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700;
  border-radius: 40px; cursor: pointer;
  text-decoration: none; border: none;
  transition: all .22s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 14px 28px; font-size: 14px;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: -3px; border-radius: 40px;
  border: 2px solid rgba(59,139,255,.45);
  animation: pulse-ring 2.4s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}
.btn-primary:hover {
  background: #1355c8; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,106,237,.42);
}
.btn-ghost {
  background: transparent; color: var(--off-white);
  border: 1px solid var(--glass-bd);
  padding: 13px 26px; font-size: 14px;
}
.btn-ghost:hover {
  border-color: var(--glass-bd-h);
  background: var(--blue-faint); color: var(--white);
}
.btn-wa {
  background: var(--wa); color: #fff;
  padding: 14px 30px; font-size: 14px;
  box-shadow: 0 4px 18px rgba(37,211,102,.32);
}
.btn-wa-center {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px !important;
}
.btn-wa:hover {
  background: #1db352; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
}
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ────────────────────────────────────────────────────────────
   KEYFRAMES
──────────────────────────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.14); opacity: 0;  }
  100% { transform: scale(1.14); opacity: 0;  }
}
@keyframes float-y   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeUp    { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink     { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.65)} }
@keyframes wa-idle   { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes spin      { to{transform:rotate(360deg)} }

/* ────────────────────────────────────────────────────────────
   NAV — sticky, backdrop-blur(10px)
──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 66px;
  background: rgba(6,8,15,.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-bd);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 210px; width: auto; object-fit: contain;
  drop-shadow(0 0 5px rgba(59,139,255,.28));
}
.nav-logo-txt {
  font-weight: 800; font-size: 18px;
  letter-spacing: -.025em; color: var(--white);
}
.nav-logo-txt em { font-style: normal; color: var(--blue-b); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 7px 13px; border-radius: 40px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: var(--blue-faint); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--off-white); border-radius: 2px;
  transition: all .28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
  background: rgba(6,8,15,.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-bd);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: var(--r);
  font-size: 15px; font-weight: 600; color: var(--off-white);
  text-decoration: none; transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--blue-faint); color: var(--white); }
.mobile-menu .btn-primary { margin-top: 10px; justify-content: center; }

/* ────────────────────────────────────────────────────────────
   HERO — centred, headline 6xl desktop
──────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 130px 24px 80px;
}
.hero-orb-1 {
  position: absolute; pointer-events: none;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 750px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,106,237,.14) 0%, transparent 65%);
}
.hero-orb-2 {
  position: absolute; pointer-events: none;
  bottom: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,139,255,.07) 0%, transparent 65%);
}
.hero-inner {
  max-width: 820px; width: 100%;
  position: relative; z-index: 1;
  text-align: center;
  animation: fadeUp .8s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,106,237,.10); border: 1px solid rgba(59,139,255,.28);
  border-radius: 40px; padding: 6px 16px;
  font-size: 11px; font-weight: 700; color: var(--blue-b);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-b); animation: pulse-dot 2s infinite; flex-shrink: 0;
}

/* 6xl headline (~3.75rem base, scales to 4rem desktop) */
.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.04; color: var(--white); margin-bottom: 6px;
}
.hero-dynamic-row {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  min-height: clamp(2.6rem, 6vw, 4.5rem); margin-bottom: 6px;
}
.hero-dynamic {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.04; color: var(--blue-b);
}
.hero-cursor {
  display: inline-block; width: 3px;
  height: clamp(1.6rem, 3.8vw, 2.8rem);
  background: var(--blue-b); border-radius: 2px;
  vertical-align: bottom; animation: blink 1s infinite;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 20px;
}

/* text-lg / text-gray-400 / leading-relaxed */
.hero-sub {
  font-size: 1.125rem;      /* text-lg */
  color: var(--gray-400);   /* text-gray-400 */
  line-height: 1.625;       /* leading-relaxed */
  max-width: 600px; margin: 0 auto 36px;
  font-weight: 400;
}
.hero-sub strong { color: var(--off-white); font-weight: 600; }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 52px;
}

/* Stats bar */
.hero-stats {
  display: flex; border: 1px solid var(--glass-bd); border-radius: var(--r);
  overflow: hidden; max-width: 460px; margin: 0 auto;
  background: rgba(9,17,31,.65); backdrop-filter: blur(10px);
}
.hero-stat { flex: 1; padding: 16px 20px; border-right: 1px solid var(--glass-bd); }
.hero-stat:last-child { border-right: none; }
.stat-num { font-size: 1.85rem; font-weight: 900; letter-spacing: -.03em; color: var(--blue-b); line-height: 1.1; }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; font-weight: 500; }

/* ────────────────────────────────────────────────────────────
   SERVICES — 6-card grid + Electric Blue glow
──────────────────────────────────────────────────────────── */
.services { padding: 100px 24px; position: relative; overflow: hidden; }
.svc-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,106,237,.05) 0%, transparent 70%);
  pointer-events: none;
}
.svc-header { text-align: center; margin-bottom: 56px; position: relative; }
.svc-sub { color: var(--muted); font-size: 14.5px; max-width: 440px; margin: 0 auto; line-height: 1.75; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative;
}
.svc-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 30px 26px; cursor: default;
  position: relative; overflow: hidden;
  transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(0,150,255,.07), transparent 60%);
  opacity: 0; transition: opacity .28s ease; pointer-events: none;
}
/* ★ Electric Blue glow — spread 4px, blur 10px (refined) */
.svc-card:hover {
  border-color: rgba(59,139,255,.52);
  transform: translateY(-6px) scale(1.016);
  box-shadow: var(--card-glow);
}
.svc-card:hover::before { opacity: 1; }
.svc-featured { border-color: rgba(59,139,255,.36); background: rgba(26,106,237,.07); }
.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--blue); border-radius: 40px;
  padding: 3px 10px; font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .04em;
}
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(26,106,237,.12); border: 1px solid rgba(59,139,255,.24);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .28s, border-color .28s, box-shadow .28s;
}
.svc-card:hover .svc-icon {
  background: rgba(26,106,237,.22);
  border-color: rgba(59,139,255,.50);
  box-shadow: 0 0 12px rgba(0,150,255,.28);
}
.svc-icon svg { color: var(--blue-b); }
.svc-title  { font-size: 1rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 10px; color: var(--white); }
.svc-desc   { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.svc-bullets { display: flex; flex-direction: column; gap: 6px; }
.svc-bullet  { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--off-white); }
.svc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-b); flex-shrink: 0; }

/* ────────────────────────────────────────────────────────────
   ABOUT / QUIÉNES SOMOS
──────────────────────────────────────────────────────────── */
.why { padding: 100px 24px; background: var(--navy-2); }
.why-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.why-reasons { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-reason  { display: flex; gap: 16px; align-items: flex-start; }
.why-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(26,106,237,.12); border: 1px solid rgba(59,139,255,.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.why-reason:hover .why-ico { background: rgba(26,106,237,.22); border-color: rgba(59,139,255,.42); }
.why-ico svg { color: var(--blue-b); }
.why-r-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-r-text  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Animated metric counters */
.metrics-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 28px; margin-bottom: 18px;
}
.metric-card {
  background: rgba(26,106,237,.07); border: 1px solid rgba(59,139,255,.18);
  border-radius: var(--r); padding: 18px 14px; text-align: center;
  transition: border-color .25s, box-shadow .25s;
}
.metric-card:hover {
  border-color: rgba(59,139,255,.40);
  box-shadow: 0 0 14px rgba(0,150,255,.16);
}
.metric-num   { font-size: 1.6rem; font-weight: 900; letter-spacing: -.03em; color: var(--blue-b); line-height: 1.1; margin-bottom: 4px; }
.metric-label { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* Metric highlight block */
.metric-block {
  margin-top: 22px;
  background: rgba(26,106,237,.06); border: 1px solid rgba(59,139,255,.20);
  border-left: 3px solid var(--blue-b); border-radius: var(--r); padding: 18px 20px;
}
.metric-block p       { font-size: 14px; color: var(--off-white); line-height: 1.74; }
.metric-block strong  { color: var(--blue-b); font-weight: 700; }

/* Sectors */
.sectors-lbl  { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.sectors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sector {
  background: var(--glass); border: 1px solid var(--glass-bd);
  border-radius: var(--r); backdrop-filter: blur(10px);
  padding: 16px 14px; display: flex; align-items: center; gap: 12px;
  transition: border-color .24s;
}
.sector:hover { border-color: rgba(59,139,255,.34); }
.sector-ico   { width: 34px; height: 34px; border-radius: 8px; background: rgba(26,106,237,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sector-ico svg { color: var(--blue-b); }
.sector-name  { font-size: 13px; font-weight: 600; color: var(--white); }
.sector-sub   { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ────────────────────────────────────────────────────────────
   PROCESS
──────────────────────────────────────────────────────────── */
.process { padding: 96px 24px; }
.process-inner { max-width: 1180px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-line {
  position: absolute; top: 27px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,139,255,.2), rgba(59,139,255,.2), transparent);
}
.process-step { text-align: center; padding: 12px 12px 26px; }
.proc-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy-3); border: 1px solid rgba(59,139,255,.26);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-weight: 800; font-size: 13px;
  color: var(--blue-b); position: relative; z-index: 1;
}
.proc-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.proc-text  { font-size: 13px; color: var(--muted); line-height: 1.62; max-width: 160px; margin: 0 auto; }

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS — CAROUSEL SLIDER
──────────────────────────────────────────────────────────── */
.testimonials { padding: 96px 24px; background: var(--navy-2); }
.testi-header { text-align: center; margin-bottom: 52px; }

.slider-wrap  { position: relative; padding: 0 56px; }
.slider-outer { overflow: hidden; border-radius: var(--r-lg); }
.slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide card — glassmorphism */
.testi-card {
  flex: 0 0 100%;
  background: var(--glass); border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 40px 44px; position: relative; overflow: hidden;
  box-sizing: border-box; transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(59,139,255,.28); }

/* ★ Large subtle quote mark — opacity-10 in top-right corner */
.testi-quote {
  position: absolute; top: 16px; right: 22px;
  font-size: 100px; line-height: 1;
  color: var(--blue-b); opacity: .10;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; pointer-events: none; user-select: none;
}

.testi-stars  { color: var(--blue-b); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-text   { font-size: 15px; color: var(--off-white); line-height: 1.80; margin-bottom: 24px; font-style: italic; max-width: 680px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6ea8ff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 13px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Slider navigation arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(9,17,31,.85); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.slider-arrow:hover {
  border-color: rgba(59,139,255,.50);
  background: rgba(26,106,237,.16);
  box-shadow: 0 0 14px rgba(0,150,255,.20);
}
.slider-arrow svg { color: var(--off-white); transition: color .2s; }
.slider-arrow:hover svg { color: var(--white); }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Pagination dots */
.slider-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--glass-bd); border: 1px solid rgba(59,139,255,.20);
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s, border-color .3s;
}
.slider-dot.active {
  background: var(--blue-b); width: 24px;
  border-radius: 4px; border-color: var(--blue-b);
}

/* ────────────────────────────────────────────────────────────
   CONTACT — Form + WhatsApp CTA only. No plain email/phone.
──────────────────────────────────────────────────────────── */
.contact { padding: 100px 24px; position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,106,237,.09) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1080px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}

/* Left: intro + WA block */
.contact-intro {}
.contact-intro-sub { color: var(--muted); font-size: 15px; line-height: 1.78; margin-bottom: 28px; }
.contact-intro-sub strong { color: var(--white); }

.contact-wa-block {
  background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.20);
  border-radius: var(--r-lg); padding: 24px 22px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.contact-wa-title { font-size: 14px; font-weight: 700; color: var(--white); }
.contact-wa-sub   { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 4px; }
.avail-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,224,122,.08); border: 1px solid rgba(0,224,122,.20);
  border-radius: 40px; padding: 5px 13px;
  font-size: 11px; color: var(--green); font-weight: 600;
}
.avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Right: form */
.contact-form-wrap {
  background: var(--glass); border: 1px solid var(--glass-bd);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 36px;
}
.form-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 22px; letter-spacing: -.015em; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label  { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.form-input, .form-textarea {
  background: rgba(9,17,31,.70); border: 1px solid rgba(59,139,255,.18);
  border-radius: var(--r); padding: 12px 14px;
  font-family: var(--font); font-size: 14px; color: var(--white);
  outline: none; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(59,139,255,.55);
  box-shadow: 0 0 0 3px rgba(59,139,255,.10);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-notice { font-size: 11px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.form-notice a { color: var(--blue-b); text-decoration: none; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--blue); color: #fff; border: none;
  border-radius: 40px; font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .22s, transform .18s, box-shadow .22s;
}
.form-submit:hover { background: #1355c8; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,106,237,.42); }
.form-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.form-feedback {
  display: none; padding: 12px 16px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; margin-top: 14px; text-align: center;
}
.form-feedback.success { background: rgba(0,224,122,.10); border: 1px solid rgba(0,224,122,.25); color: var(--green); }
.form-feedback.error   { background: rgba(245,80,80,.10);  border: 1px solid rgba(245,80,80,.25);  color: #f55050; }

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.footer { background: var(--navy-2); border-top: 1px solid var(--glass-bd); padding: 60px 24px 28px; }
.footer-grid {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-logo     { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-logo img { height: 34px; object-fit: contain;}
.footer-logo-txt { font-weight: 800; font-size: 17px; letter-spacing: -.025em; text-align: justify;}
.footer-logo-txt em { font-style: normal; color: var(--blue-b); text-align: justify;}
.footer-brand-text { color: var(--muted); font-size: 13px; line-height: 1.74; max-width: 240px; margin-bottom: 16px; text-align: justify; }
.footer-online {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,224,122,.08); border: 1px solid rgba(0,224,122,.20);
  border-radius: 40px; padding: 5px 13px; font-size: 11px; color: var(--green); font-weight: 600;
}
.fo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links    { display: flex; flex-direction: column; gap: 10px; }
.footer-links a  { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid var(--glass-bd); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px;
}
.footer-bottom .blue { color: var(--blue-b); }

/* ────────────────────────────────────────────────────────────
   FLOATING WHATSAPP FAB
──────────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.44); text-decoration: none;
  animation: wa-idle 4s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.12)!important; box-shadow: 0 8px 32px rgba(37,211,102,.62); animation: none; }
.wa-fab svg { color: #fff; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { max-width: 700px; }
  .why-inner     { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-inner {padding: 0 12px; /* Reducimos el padding lateral de 24px a 12px */  }
  .nav-logo {margin-left: -5px; /* Empujoncito extra opcional hacia la izquierda */}
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }
  .svc-grid  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line  { display: none; }
  .testi-card    { padding: 28px 24px; }
  .slider-wrap   { padding: 0 40px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sectors-grid  { grid-template-columns: 1fr; }
  .metrics-row   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .form-row  { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-sub  { font-size: 1rem; }
  .testi-card { padding: 24px 18px; }
  .testi-quote { font-size: 72px; }
  .slider-wrap  { padding: 0 36px; }
  .slider-arrow { width: 36px; height: 36px; }
}



@media (max-width: 580px) {
  .form-row  { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-sub  { font-size: 1rem; }
  .testi-card { padding: 24px 18px; }
  .testi-quote { font-size: 72px; }
  .slider-wrap  { padding: 0 36px; }
  .slider-arrow { width: 36px; height: 36px; }
}
