/* ── BRAND TOKENS ─────────────────────────────────── */
:root {
  --black:   #000000;
  --white:   #FFFFFF;
  --cyan:    #00FFFF;
  --orange:  #FF6600;
  --gray-10: #0a0a0a;
  --gray-15: #111111;
  --gray-20: #1a1a1a;
  --gray-30: #2a2a2a;
  --gray-50: #555555;
  --gray-70: #999999;
  --gray-90: #cccccc;

  --font-display: 'Blanka', 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
  font-family: 'Blanka';
  src: url('../fonts/Blanka-Regular.woff2') format('woff2'),
       url('../fonts/Blanka-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cyan   { color: var(--cyan); }
.orange { color: var(--orange); }

/* ── ANIMATED ELEMENTS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-90);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: var(--cyan);
  color: var(--black) !important;
  padding: 10px 22px;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--orange) !important; transform: scale(1.04) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-logo {
  position: absolute;
  top: 24px;
  left: 24px;
}
.mobile-menu-logo img {
  height: 32px;
  width: auto;
}
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

#hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cyan);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title .line-accent {
  display: block;
  color: var(--cyan);
}
.hero-title .line-outline {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-90);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,102,0,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--cyan); border-color: var(--cyan); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-20);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-70);
  margin-top: 4px;
}

.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  width: 42vw;
  max-width: 580px;
  pointer-events: none;
  user-select: none;
}
.hero-deco img {
  width: 100%;
  height: auto;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(155deg);
}

/* ── SECTION SHARED ────────────────────────────────── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-90);
  max-width: 560px;
  line-height: 1.7;
}

/* ── CLIENTES ──────────────────────────────────────── */
#clientes {
  padding: 56px 0;
  background: var(--gray-10);
  border-top: 1px solid var(--gray-20);
  border-bottom: 1px solid var(--gray-20);
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 36px;
}
.clients-header-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-50);
}
.clients-ticker-wrap {
  position: relative;
  overflow: hidden;
}
.clients-ticker-wrap::before,
.clients-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-10), transparent);
}
.clients-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-10), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-50);
  white-space: nowrap;
  padding: 0 32px;
  transition: color 0.3s;
}
.client-name:hover { color: var(--gray-90); }
.client-dot {
  color: rgba(0,255,255,0.2);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── NOSOTROS ──────────────────────────────────────── */
#nosotros {
  background: var(--gray-10);
  border-top: 1px solid var(--gray-20);
  border-bottom: 1px solid var(--gray-20);
}
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-text p {
  color: var(--gray-90);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.nosotros-text p:last-child { margin-bottom: 0; }
.nosotros-text strong { color: var(--white); font-weight: 700; }
.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-20);
}
.pillar:first-child { border-top: 1px solid var(--gray-20); }
.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,255,255,0.06);
  border: 1px solid rgba(0,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.pillar-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar-content p {
  font-size: 0.88rem;
  color: var(--gray-70);
  line-height: 1.6;
  margin: 0 !important;
}

/* ── PRODUCTOS ─────────────────────────────────────── */
#productos { background: var(--black); }
.productos-header {
  text-align: center;
  margin-bottom: 72px;
}
.productos-header .section-label { justify-content: center; }
.productos-header .section-label::before { display: none; }
.productos-header .section-sub { margin: 0 auto; text-align: center; }

.aztec-card {
  position: relative;
  background: var(--gray-10);
  border: 1px solid rgba(0,255,255,0.2);
  padding: 56px;
  margin-bottom: 32px;
  overflow: hidden;
}
.aztec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--cyan));
}
.aztec-card-deco {
  position: absolute;
  right: -16px;
  bottom: -16px;
  opacity: 0.05;
  width: 200px;
  pointer-events: none;
  user-select: none;
}
.aztec-card-deco img {
  width: 100%;
  height: auto;
}
.card-badge {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.aztec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.aztec-left h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.aztec-left h3 span { color: var(--cyan); }
.aztec-left .tagline {
  font-size: 1rem;
  color: var(--gray-90);
  line-height: 1.7;
  margin-bottom: 28px;
}
.aztec-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-90);
  font-weight: 500;
}
.feat-item::before {
  content: '→';
  color: var(--cyan);
  flex-shrink: 0;
}
.aztec-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.modules-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-70);
  margin-bottom: 16px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.module-chip {
  background: rgba(0,255,255,0.05);
  border: 1px solid rgba(0,255,255,0.1);
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-90);
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.module-chip:hover {
  background: rgba(0,255,255,0.1);
  border-color: rgba(0,255,255,0.35);
  color: var(--cyan);
}
.clients-bar {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-20);
}
.clients-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 10px;
}
.client-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.client-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-70);
  background: var(--gray-20);
  padding: 4px 10px;
}

.other-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.prod-card {
  background: var(--gray-10);
  border: 1px solid var(--gray-20);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.prod-card:hover {
  border-color: var(--gray-30);
  transform: translateY(-4px);
}
.prod-card.coming { opacity: 0.6; }
.prod-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.prod-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prod-card p {
  font-size: 0.85rem;
  color: var(--gray-70);
  line-height: 1.6;
  margin-bottom: 20px;
}
.prod-card-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.status-live { color: var(--cyan); }
.status-coming { color: var(--orange); }
.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  border-bottom: 1px solid rgba(0,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.prod-card-link:hover { gap: 10px; border-color: var(--cyan); }

/* ── POR QUÉ ROCKETTERS ────────────────────────────── */
#porque {
  background: var(--gray-10);
  border-top: 1px solid var(--gray-20);
  border-bottom: 1px solid var(--gray-20);
}
.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.porque-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reason {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-20);
}
.reason:first-child { border-top: 1px solid var(--gray-20); }
.reason-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: rgba(0,255,255,0.2);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.reason-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.reason-content p {
  font-size: 0.88rem;
  color: var(--gray-70);
  line-height: 1.6;
}
.porque-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.quote-block {
  background: var(--black);
  border-left: 3px solid var(--cyan);
  padding: 28px 32px;
}
.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-90);
  line-height: 1.7;
  margin-bottom: 16px;
}
.quote-author {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-50);
}
.porque-clients-note {
  background: rgba(0,255,255,0.04);
  border: 1px solid rgba(0,255,255,0.1);
  padding: 24px 28px;
}
.porque-clients-note h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.porque-clients-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.porque-clients-note li {
  font-size: 0.88rem;
  color: var(--gray-70);
  display: flex;
  align-items: center;
  gap: 8px;
}
.porque-clients-note li::before {
  content: '—';
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── CONTACTO CTA ──────────────────────────────────── */
#contacto {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#contacto::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,102,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner .section-title { max-width: 700px; margin: 0 auto 20px; }
.cta-inner .section-sub { margin: 0 auto 44px; text-align: center; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-channels {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-70);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.cta-channel:hover { color: var(--cyan); }
.cta-channel-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-15);
  border: 1px solid var(--gray-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-70);
  transition: color 0.2s;
}
.cta-channel:hover .cta-channel-icon { color: var(--cyan); }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--gray-10);
  border-top: 1px solid var(--gray-20);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 32px;
  width: auto;
  transition: opacity 0.2s;
}
.footer-logo:hover img { opacity: 0.8; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-70);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--gray-20);
  border: 1px solid var(--gray-30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-70);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: rgba(0,255,255,0.1);
  border-color: rgba(0,255,255,0.3);
  color: var(--cyan);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.85rem;
  color: var(--gray-70);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--gray-20);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-50);
}
.footer-bottom a { color: var(--gray-50); }
.footer-bottom a:hover { color: var(--cyan); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-50);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cyan); }

/* ── PRODUCT CARD BRAND OVERRIDES ──────────────────── */

.prod-card.facitrabajo {
  background: #1a0e08;
  border-color: rgba(232,96,10,0.25);
}
.prod-card.facitrabajo:hover { border-color: rgba(232,96,10,0.5); }
.prod-card.facitrabajo .prod-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 12px;
}
.prod-card.facitrabajo .name-faci  { color: #E8600A; }
.prod-card.facitrabajo .name-trabajo { color: #7DAA8A; }
.prod-card.facitrabajo .name-dot   { color: rgba(255,255,255,0.4); }
.prod-card.facitrabajo p { font-family: 'Sora', sans-serif; font-size: 0.84rem; }
.prod-card.facitrabajo .prod-card-status { color: #E8600A; }
.prod-card.facitrabajo .prod-pill-tag {
  display: inline-block;
  background: rgba(232,96,10,0.12);
  border: 1px solid rgba(232,96,10,0.25);
  color: #E8600A;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.prod-card.facitrabajo .faci-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E8600A, #FF8B3E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
  border-radius: 8px;
}

.prod-card.moniflow {
  background: #0b1712;
  border-color: rgba(0,184,148,0.2);
  overflow: hidden;
}
.prod-card.moniflow::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.prod-card.moniflow:hover { border-color: rgba(0,184,148,0.4); }
.prod-card.moniflow .prod-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 6px;
}
.prod-card.moniflow .name-moni { color: #ffffff; }
.prod-card.moniflow .name-flow { color: #00b894; }
.prod-card.moniflow .moni-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.4;
}
.prod-card.moniflow p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(240,245,243,0.6);
}
.prod-card.moniflow .prod-card-status { color: #00b894; }
.prod-card.moniflow .moni-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,184,148,0.12);
  border: 1px solid rgba(0,184,148,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .nosotros-grid,
  .porque-grid { grid-template-columns: 1fr; gap: 48px; }
  .aztec-grid { grid-template-columns: 1fr; }
  .other-products { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-deco { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .aztec-card { padding: 32px 24px; }
  .aztec-features { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .other-products { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-logo img { height: 30px; }
  .aztec-card-deco { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-channels { gap: 20px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
}
