/* ============================================================
   AXIOM TECH — LANDING PAGE
   Brand: Neue Montreal → Inter (system replacement)
   Colors: #0D3B66 | #FF6D2D | #000000 | #C0C3CA
   ============================================================ */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --blue:        #0D3B66;
  --blue-light:  #1a5a9a;
  --orange:      #FF6D2D;
  --orange-light:#ff8c5a;
  --black:       #000000;
  --grey:        #C0C3CA;
  --grey-dark:   #6b7280;
  --grey-mid:    #9ca3af;
  --white:       #ffffff;
  --bg-dark:     #04111f;
  --bg-card:     #091d30;
  --bg-card2:    #0a2440;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(13, 59, 102, 0.25);
  --shadow-orange: 0 4px 32px rgba(255, 109, 45, 0.3);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Inter', 'Neue Montreal', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ─── CANVAS & BACKGROUND ─────────────────────────────────── */
#bgCanvas, #binaryCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
#bgCanvas { z-index: 0; opacity: 0.6; }
#binaryCanvas { z-index: 1; opacity: 0; transition: opacity 1s; }
#binaryCanvas.active { opacity: 0.07; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(13, 59, 102, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 59, 102, 0.15);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  max-width: 200px;
}
.logo-mark-img { height: 40px; display: flex; align-items: center; }
.nav-img { height: 100%; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,109,45,0.45);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,17,31,0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin: 16px 0; }
.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey);
  transition: color var(--transition);
  display: block;
  padding: 8px;
}
.mobile-link:hover { color: var(--white); }
.mobile-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
}
.reveal-left {
  opacity: 0;
  transform: translate3d(-60px, 0, 0) rotate(-2deg);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
}
.reveal-right {
  opacity: 0;
  transform: translate3d(60px, 0, 0) rotate(2deg);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
}
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,109,45,0.45);
  gap: 14px;
}
.btn-primary.btn-blue {
  background: var(--blue);
  box-shadow: var(--shadow);
}
.btn-primary.btn-blue:hover {
  background: var(--blue-light);
  box-shadow: 0 12px 40px rgba(13,59,102,0.5);
}
.btn-primary.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
}
.btn-primary.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(192,195,202,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,109,45,0.12);
  border: 1px solid rgba(255,109,45,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-text {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}
.text-orange { color: var(--orange); }
.title-gradient {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION LAYOUT ──────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .section-badge { justify-content: center; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content {
  flex: 1;
  position: relative;
  z-index: 10;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 59, 102, 0.4);
  border: 1px solid rgba(13, 59, 102, 0.6);
  color: var(--grey);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-subtitle strong { color: var(--white); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-number {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(192,195,202,0.2);
}

/* ─── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  min-height: 400px;
}
.hex-orbit-container {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-x-core {
  width: 280px;
  height: 280px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 0 40px rgba(13, 59, 102, 0.3));
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-x-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(2deg); }
  66% { transform: translateY(-6px) rotate(-2deg); }
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,109,45,0.25);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.orbit-1 { width: 280px; height: 280px; animation: orbit-rotate 12s linear infinite; }
.orbit-2 { width: 330px; height: 330px; animation: orbit-rotate 20s linear infinite reverse; }
.orbit-3 { width: 360px; height: 360px; animation: orbit-rotate 16s linear infinite; }
@keyframes orbit-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: -5px;
  box-shadow: 0 0 12px rgba(255,109,45,0.8);
}
.orbit-dot-2 {
  width: 6px; height: 6px;
  margin-top: -3px;
  background: var(--blue-light);
  box-shadow: 0 0 10px rgba(26,90,154,0.8);
}
.orbit-dot-3 {
  width: 8px; height: 8px;
  margin-top: -4px;
  opacity: 0.7;
}

/* ─── SCROLL INDICATOR ────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-dark);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  animation: scroll-fade 3s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ─── MISSION SECTION ─────────────────────────────────────── */
.mision-section { background: transparent; }
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mision-quote {
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  background: rgba(255,109,45,0.06);
  border-radius: 0 8px 8px 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
}
.mision-quote strong { color: var(--orange); font-style: normal; }
.quote-mark {
  display: block;
  font-size: 3rem;
  color: var(--orange);
  line-height: 0.5;
  margin-bottom: 12px;
  font-style: normal;
}
.mision-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mision-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey);
  font-size: 0.9rem;
}
.point-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,109,45,0.1);
  border-radius: 8px;
}

/* ─── VISUAL CARD ─────────────────────────────────────────── */
.visual-card {
  position: relative;
  border: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-mission 6s ease-in-out infinite;
}
.visual-card-glow {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,109,45,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.floating-tech-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-width: 650px;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(255, 109, 45, 0.45));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.visual-card:hover .floating-tech-img {
  transform: scale(1.05) translateY(-10px);
}
@keyframes float-mission {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.visual-card-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  background: rgba(4,17,31,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,109,45,0.3);
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── DATA FLOW DIVIDER ───────────────────────────────────── */
.data-flow-divider {
  height: 80px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.flow-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  position: relative;
}
.binary-stream {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(255,109,45,0.4);
  white-space: nowrap;
  overflow: hidden;
  animation: flow-right 6s linear infinite;
  letter-spacing: 4px;
}
.binary-stream:nth-child(even) {
  color: rgba(13,59,102,0.6);
  animation-direction: reverse;
  animation-duration: 8s;
}
@keyframes flow-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(100vw); }
}

/* ─── SERVICES SECTION ─────────────────────────────────── */
.servicios-section { background: transparent; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 40px;
}
.pillar-backgrounds {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}
.pillar-bg-half {
  flex: 1;
  position: relative;
}
.pillar-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.6;
}
.pillar-card {
  padding: 100px 10%;
  position: relative;
  z-index: 5;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pillar-card:hover {
  background: rgba(13, 59, 102, 0.05);
}
.pillar-spotlight-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.pillar-card * { position: relative; z-index: 5; }
.pillar-card .pillar-number { position: absolute; z-index: 1; }

.pillar-ai-badge, .pillar-tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.pillar-ai-badge span, .pillar-tech-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255,109,45,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,109,45,0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pillar-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.pillar-description {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.pillar-description strong { color: var(--white); }
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--grey);
}
.pillar-list li svg { flex-shrink: 0; }

/* ─── ECOSYSTEM SECTION ───────────────────────────────────── */
.ecosistema-section {
  position: relative;
  overflow: hidden;
}
.ecosistema-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13,59,102,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ecosistema-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── AI & AUTOMATION SECTION ────────────────────────────── */
.ai-section {
  background: linear-gradient(to bottom, var(--bg-dark), #05162a);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.ai-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.ai-terminal {
  background: #020a13;
  border: 1px solid rgba(255, 109, 45, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}
.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }
.terminal-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--grey-dark);
  font-family: monospace;
}
.terminal-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: #00ff88;
  height: 320px;
  overflow-y: auto;
}
.terminal-line { margin-bottom: 8px; line-height: 1.4; }
.cursor {
  display: inline-block;
  width: 8px; height: 15px;
  background: #00ff88;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

.ai-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ai-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.ai-card:hover {
  background: rgba(255, 109, 45, 0.05);
  border-color: rgba(255, 109, 45, 0.2);
  transform: translateX(10px);
}
.ai-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--orange);
}
.ai-card p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ─── ECOSYSTEM ENHANCEMENTS ──────────────────────────────── */
.eco-diagram {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-orbit-ring {
  position: absolute;
  border: 1px dashed rgba(255, 109, 45, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.ring-1 { width: 60%; height: 60%; animation: orbit-rotate 30s linear infinite; }
.ring-2 { width: 85%; height: 85%; animation: orbit-rotate 40s linear infinite reverse; }
.ring-3 { width: 110%; height: 110%; animation: orbit-rotate 60s linear infinite; }

.eco-pulse-center {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 109, 45, 0.1) 0%, transparent 70%);
  animation: pulse-center 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-center {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

.eco-line {
  stroke-dasharray: 5, 5;
  animation: line-flow 2s linear infinite;
}
@keyframes line-flow {
  to { stroke-dashoffset: -10; }
}

.eco-stats {
  margin: 40px 0;
  flex-wrap: wrap;
  display: flex;
  gap: 32px;
}
.eco-stat { text-align: left; }
.eco-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.eco-stat-label {
  font-size: 0.75rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ─── ECO DIAGRAM ─────────────────────────────────────────── */
.eco-diagram {
  position: relative;
  width: 400px; height: 400px;
  margin: 0 auto;
}
.eco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.eco-hex {
  width: 120px; height: 120px;
  animation: float 5s ease-in-out infinite;
}
.eco-nodes {
  position: absolute;
  inset: 0;
}
.eco-node {
  position: absolute;
  width: 110px;
  height: 110px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--bg-card2);
  border: 1px solid rgba(255,109,45,0.2);
  border-radius: var(--radius);
  transition: var(--transition);
  padding: 0;
}
.eco-node:hover {
  border-color: var(--orange);
  background: rgba(255, 109, 45, 0.08);
}
.eco-node-top:hover { transform: scale(1.05); }
.eco-node-bottom:hover { transform: translateX(-50%) scale(1.05); }
.eco-node-right:hover { transform: scale(1.05); }
.eco-node-left:hover { transform: translateY(-50%) scale(1.05); }

.eco-node-icon { font-size: 1.4rem; }
.eco-node span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.eco-node-top    { top: -20px;   right: 50%;     transform: none; }
.eco-node-right  { right: -20px;  bottom: 50%;    transform: none; }
.eco-node-bottom { bottom: -20px; left: 50%;     transform: translateX(-50%); }
.eco-node-left   { left: -20px;   top: 50%;      transform: translateY(-50%); }

.eco-connections {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.eco-line { animation: dash-flow 3s linear infinite; }
@keyframes dash-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  z-index: 10;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,109,45,0.12) 0%,
    rgba(13,59,102,0.15) 50%,
    rgba(255,109,45,0.08) 100%);
  border-top: 1px solid rgba(255,109,45,0.1);
  border-bottom: 1px solid rgba(255,109,45,0.1);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.cta-text {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: rgba(4,17,31,0.9);
  border-top: 1px solid rgba(255,109,45,0.1);
  padding: 80px 0 0;
  position: relative;
  z-index: 10;
}
.footer-geo {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(255,109,45,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-tagline {
  color: var(--grey-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 0.82rem;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--grey-dark);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255,109,45,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,109,45,0.1);
  transition: var(--transition);
}
.footer-contact-item:hover {
  background: rgba(255,109,45,0.1);
  border-color: rgba(255,109,45,0.3);
}
.contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,109,45,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-size: 0.68rem;
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.footer-cta { width: 100%; justify-content: center; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copy { color: var(--grey-dark); font-size: 0.8rem; }
.footer-made { color: var(--grey-dark); font-size: 0.8rem; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ecosistema-inner { grid-template-columns: 1fr; }
  .eco-diagram { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .hero-visual { min-height: 280px; }
  .hex-orbit-container { width: 260px; height: 260px; }
  .hero-x-core { width: 150px; height: 150px; }
  .orbit-1 { width: 210px; height: 210px; }
  .orbit-2 { width: 245px; height: 245px; }
  .orbit-3 { width: 270px; height: 270px; }
  .section-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .mision-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .eco-diagram { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.2rem; }
  .pillar-card { padding: 28px 20px; }
}

.ai-icon-box, .tech-icon-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,109,45,0.1);
  border: 2px solid rgba(255,109,45,0.35);
  flex-shrink: 0;
}
.tech-icon-box {
  background: rgba(13,59,102,0.2);
  border-color: rgba(26,90,154,0.4);
}
