@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@400;500;700&display=swap');
/* ============================================================
   AegisX Team v2 — Stylesheet
   Paleta oficial: navy #0a0f1e · cyan #00c2ff · gris #8a96a8
   Tipografía: Inter (400/500/700/800)
   ============================================================ */

:root {
  /* Los Cimientos y La Accion Palette */
  --color-bg: #0d1117;
  /* Negro Azulado Profundo */
  --color-bg-alt: #161b22;
  /* Azul Noche Medio */
  --color-bg-hover: #1a2332;
  /* Azul Grisaceo Oscuro */

  --color-text: #f9fafb;
  /* Off-white crisp text */
  --color-text-muted: #9ca3af;
  /* Professional muted gray */
  --color-text-dim: #6b7280;
  /* Dim gray */

  --color-accent: #0ea5e9;
  /* Azul Cielo Vibrante (Principal) */
  --color-accent-hover: #00d4ff;
  /* Cyan Neon (CTA/Acento prioridad) */
  --color-accent-soft: rgba(14, 165, 233, 0.1);
  --color-accent-border: rgba(14, 165, 233, 0.25);

  --color-border: #1a2332;
  /* Detalles de interfaz, bordes */
  --color-border-strong: #374151;
  /* Stronger Hairline */
  --whatsapp: #25d366;
  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Legacy mappings */
  --navy: var(--color-bg);
  --navy-2: var(--color-bg-alt);
  --navy-3: var(--color-bg-hover);
  --cyan: var(--color-accent);
  --cyan-soft: var(--color-accent-soft);
  --cyan-border: var(--color-border);
  --cyan-border-strong: var(--color-border-strong);
  --white: var(--color-text);
  --gray: var(--color-text-muted);
  --gray-dim: var(--color-text-dim);

  --radius-sm: 4px;
  --radius: 8px;
  --container: 1200px;
}

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

*::selection {
  background: var(--cyan);
  color: var(--navy);
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: transparent;
  color: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Full-page particle canvas ── */
#particles,
.particles-bg {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none;
}

/* Ensure all content sits above the canvas */
.nav,
.drawer,
.hero,
.section,
.product-hero,
.product-cta,
.lp-hero,
.lp-marquee,
.lp-cta,
.footer,
.fab-whatsapp,
.tweaks,
.showcase,
.nosotros,
.contact,
main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

.nav {
  z-index: 50;
}

.drawer {
  z-index: 60;
}

.fab-whatsapp {
  z-index: 40;
}

.tweaks {
  z-index: 70;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────────────────────────
   Helpers
   ───────────────────────────────────────────────────────────── */
.cyan-text {
  background: linear-gradient(135deg, #6ee0ff 0%, var(--cyan) 50%, #008fbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glow-cyan {
  text-shadow:
    0 0 20px rgba(0, 194, 255, 0.6),
    0 0 60px rgba(0, 194, 255, 0.3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--gray);
}

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00c2ff 0%, #0a8fc4 100%);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0, 194, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 194, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--cyan-border-strong);
}

.btn-outline:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #20b956;
}

.btn-block {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   Nav
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 50;
  padding: 8px 24px;
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, top .25s;
}

.nav.scrolled {
  top: 0;
  background: rgba(10, 15, 30, 0.85);
  border-bottom-color: var(--cyan-border);
}

/* Split nav: links left | logo center | links right */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 40px;
  position: relative;
  min-height: 50px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 4px;
  position: relative;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link.has-dropdown .chev {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}

.nav-item.open .has-dropdown .chev {
  transform: rotate(-135deg) translateY(0);
}

.nav-logo {
  display: flex; align-items: center; justify-content: center;
  width: 90px; height: 50px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.nav-logo::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.nav-logo img {
  width: 110px;
  max-width: none;
  height: auto;
  position: relative;
  z-index: 1;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(13, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Puente invisible para mantener el hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-item.open .nav-dropdown,
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2px;
  text-transform: none;
  transition: background .15s;
}

.nav-dropdown a:hover {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.nav-dropdown a .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

.nav-dropdown a .ico svg {
  width: 18px;
  height: 18px;
}

.nav-mobile-btn {
  display: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid var(--cyan-border);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
}

.nav-mobile-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  padding: 80px 28px 28px;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  margin: 0 auto;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}

.drawer-nav a:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan-border);
}

.drawer-nav a .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--cyan);
  flex-shrink: 0;
}

.drawer-nav a .ico svg {
  width: 20px;
  height: 20px;
}

.drawer-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 18px 18px 6px;
}

/* Floating WhatsApp (mobile) */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: pulseRing 2.4s infinite;
}

.fab-whatsapp svg {
  width: 30px;
  height: 30px;
}

@keyframes pulseRing {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ─────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero h1 .line2 {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--gray);
  max-width: 640px;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 8px;
}

.hero-btn {
  display: inline-block;
  border-radius: 9999px;
  background: var(--cyan);
  color: var(--navy-2);
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  margin-top: 16px;
  cursor: pointer;
  border: 2px solid transparent;
}

.hero-btn:hover {
  background: var(--navy-2);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.4);
}

/* ─────────────────────────────────────────────────────────────
   Sections
   ───────────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 110px 24px;
}

/* Alt sections are translucent overlays so the particle bg shows through */
.section--alt {
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.78) 50%, rgba(6, 10, 20, 0.55) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.section-head {
  text-align: center; max-width: 700px; margin: 0 auto 64px;
}
.section-head.text-left {
  text-align: left; margin: 0; max-width: 100%;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────────────────────────
   NUEVO — CMSim showcase
   ───────────────────────────────────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.showcase-text .eyebrow-product {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin: 24px 0 8px;
}

.showcase-text h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 16px;
}

.showcase-text .lead {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}

.showcase-text .lead strong {
  color: var(--cyan);
  font-weight: 700;
}

.showcase-text .desc {
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--cyan-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.pill .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.pill .ico svg {
  width: 16px;
  height: 16px;
}

.showcase-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.bento-feat:hover .bento-feat-visual {
  background: rgba(0, 194, 255, 0.05);
}

.bento-feat:hover .bento-mockup {
  transform: scale(1.05) !important;
}

.metric {
  background: rgba(0, 194, 255, 0.05);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.metric .val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
}

.metric .lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* CMSim Mockup */
.showcase-visual {
  position: relative;
  perspective: 1400px;
}

.mockup {
  background: #0d1320;
  border: 1px solid var(--cyan-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 194, 255, 0.08),
    0 0 80px rgba(0, 194, 255, 0.15);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform .4s ease;
}

.mockup:hover {
  transform: rotateY(-3deg) rotateX(1deg) translateY(-4px);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0a111e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a4356;
}

.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #febc2e;
}

.mockup-dots span:nth-child(3) {
  background: #28c840;
}

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 380px;
}

.mockup-img-full {
  display: block;
  width: 100%;
  height: auto;
}

.mockup-sidebar {
  background: #0a111e;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-side-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dim);
  padding: 4px 8px 8px;
}

.mockup-side-item {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-side-item.active {
  background: var(--cyan-soft);
  color: var(--cyan);
  font-weight: 600;
}

.mockup-side-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.mockup-content {
  padding: 18px 20px;
  background: #0d1320;
}

.mockup-content-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mockup-field {
  margin-bottom: 14px;
}

.mockup-field-label {
  font-size: 10px;
  color: var(--gray-dim);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mockup-field-input {
  background: #0a111e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--white);
}

.mockup-field-input.highlight {
  color: var(--cyan);
  border-color: var(--cyan-border);
}

.mockup-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.mockup-img {
  height: 38px;
  background: #0a111e;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--gray-dim);
}

.mockup-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  margin-top: 8px;
}

.mockup-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, #00c2ff 0%, #0a8fc4 100%);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(0, 194, 255, 0.4);
  text-align: center;
}

.mockup-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.mockup-badge span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ─────────────────────────────────────────────────────────────
   NOSOTROS
   ───────────────────────────────────────────────────────────── */
.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.nosotros-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 28px;
}

.nosotros-text p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.7;
}

.nosotros-text p strong {
  color: var(--white);
  font-weight: 500;
}

.nosotros-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ─────────────────────────────────────────────────────────────
   CTA IMAGE CARDS (Based on 21st.dev CTA Card)
   ───────────────────────────────────────────────────────────── */
.cta-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 194, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
  min-height: 180px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cta-card:hover {
  transform: translateX(8px);
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 194, 255, 0.1);
}

.cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover img {
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  /* Fuerte overlay Navy a la izquierda, desvanece a Cyan semi-transparente a la derecha */
  background: linear-gradient(to right, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.8) 40%, rgba(0, 194, 255, 0.2) 100%);
  transition: opacity 0.4s ease;
}

.cta-card:hover .cta-overlay {
  background: linear-gradient(to right, rgba(10, 15, 30, 0.9) 0%, rgba(10, 15, 30, 0.7) 40%, rgba(0, 194, 255, 0.3) 100%);
}

.cta-content {
  position: relative;
  z-index: 10;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cta-icon {
  flex-shrink: 0;
  padding: 18px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.4s ease;
}

.cta-icon svg {
  width: 28px;
  height: 28px;
}

.cta-card:hover .cta-icon {
  transform: rotate(10deg) scale(1.1);
  background: rgba(0, 194, 255, 0.2);
}

.cta-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cta-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.cta-card:hover .cta-title {
  color: var(--cyan);
}

.cta-desc {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 80%;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.cta-card:hover .cta-desc {
  color: #f1f5f9;
}

.bento-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.bento-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(13, 21, 32, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 194, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.bento-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-border);
  background: rgba(13, 21, 32, 0.65);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 194, 255, 0.1);
}

.bento-item--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}

.bento-item--square {
  grid-column: span 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bento-item:hover .bento-icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
}

.bento-icon svg {
  width: 26px;
  height: 26px;
}

.bento-content h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.bento-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ─────────────────────────────────────────────────────────────
   BENTO FEATURES (SOLUCIONES)
   ───────────────────────────────────────────────────────────── */
.bento-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
  max-width: var(--container);
  margin: 0 auto;
}

.bento-feat {
  position: relative;
  background: var(--navy-2);
  border: 1px solid rgba(0, 194, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.bento-feat:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--cyan-border-strong);
}

.bento-feat--tall {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-feat--standard {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-feat--wide {
  grid-column: span 3;
  grid-row: span 1;
}

.bento-feat-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.bento-feat-visual--row {
  flex-direction: row;
}

.bento-feat-info {
  padding: 20px 24px;
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.bento-feat-info h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.bento-feat-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-feat:hover .bento-feat-info p {
  max-height: 150px;
  opacity: 1;
  margin-top: 6px;
}

.bento-feat-info--glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* -- 1. Typography Anim -- */
.type-tester {
  font-family: 'Space Grotesk', serif;
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--cyan);
}

.type-text {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -- 2. Layouts Anim -- */
.layout-anim {
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 80px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  grid-template-columns: repeat(2, 1fr);
}

.layout-anim.lay-3 {
  grid-template-columns: repeat(3, 1fr);
}

.layout-anim.lay-1 {
  grid-template-columns: repeat(1, 1fr);
}

.layout-box {
  background: rgba(0, 194, 255, 0.2);
  border-radius: 6px;
  width: 100%;
  height: 20px;
  transition: all 0.5s ease;
}

/* -- 3. Global Network Anim -- */
.global-network {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-icon {
  width: 64px;
  height: 64px;
  color: var(--cyan);
  position: relative;
  z-index: 10;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid rgba(0, 194, 255, 0.3);
  border-radius: 50%;
  animation: ripple 3s infinite ease-out;
  opacity: 0;
}

.pr-1 {
  animation-delay: 0s;
}

.pr-2 {
  animation-delay: 0.8s;
}

.pr-3 {
  animation-delay: 1.6s;
}

.pr-4 {
  animation-delay: 2.4s;
}

@keyframes ripple {
  0% {
    width: 32px;
    height: 32px;
    opacity: 1;
    border-width: 2px;
  }

  100% {
    width: 180px;
    height: 180px;
    opacity: 0;
    border-width: 1px;
  }
}

.bento-feat--overflow .bento-feat-visual {
  overflow: visible;
}

/* -- 4. Speed Indicator Anim -- */
.speed-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.speed-val-wrap {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.speed-val {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cyan);
  transition: all 0.3s;
}

.speed-lbl {
  font-size: 0.8rem;
  color: var(--gray-dim);
}

.speed-bar-track {
  width: 120px;
  height: 6px;
  background: rgba(0, 194, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.speed-bar {
  height: 100%;
  background: var(--cyan);
  border-radius: 99px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────────────────────────
   FEATURE CAROUSEL (PROYECTOS)
   ───────────────────────────────────────────────────────────── */
.feature-carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.fc-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 194, 255, 0.15);
  background: var(--navy-2);
}

@media (min-width: 1024px) {
  .fc-wrapper {
    flex-direction: row;
    border-radius: 4rem;
    height: 650px;
  }
}

/* -- LEFT SIDE (CHIPS) -- */
.fc-left {
  width: 100%;
  min-height: 350px;
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 4rem;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), transparent);
  border-right: 1px solid rgba(0, 194, 255, 0.1);
}

@media (min-width: 1024px) {
  .fc-left {
    width: 40%;
    min-height: 100%;
    padding-left: 4rem;
  }
}

.fc-fade-top,
.fc-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 40;
  pointer-events: none;
}

.fc-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--navy-2) 20%, transparent);
}

.fc-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--navy-2) 20%, transparent);
}

.fc-chips-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 20;
}

.fc-chips-track {
  position: relative;
  width: 100%;
}

.fc-chip-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 65px;
  width: fit-content;
}

.fc-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-radius: 99px;
  text-align: left;
  transition: all 0.5s ease;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.fc-chip:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.fc-chip.active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  z-index: 10;
}

.fc-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.5s;
  color: rgba(255, 255, 255, 0.4);
}

.fc-chip.active .fc-chip-icon {
  color: var(--cyan);
}

.fc-chip-icon svg {
  width: 18px;
  height: 18px;
}

.fc-chip span {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -- RIGHT SIDE (CARDS) -- */
.fc-right {
  flex: 1;
  min-height: 500px;
  position: relative;
  background: rgba(10, 15, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .fc-right {
    min-height: 100%;
  }
}

.fc-cards-viewport {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-cards-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.fc-card {
  position: absolute;
  inset: 0;
  border-radius: 2.8rem;
  overflow: hidden;
  border: 1px solid rgba(0, 194, 255, 0.1);
  background: var(--navy-2);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s, z-index 0s;
  pointer-events: none;
  /* Fix for border-radius glitch during transform in WebKit browsers */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.fc-card.active {
  transform: translateX(0) scale(1) rotate(0);
  opacity: 1;
  z-index: 20;
  pointer-events: auto;
}

.fc-card.prev {
  transform: translateX(-80px) scale(0.85) rotate(-3deg);
  opacity: 0.4;
  z-index: 10;
}

.fc-card.next {
  transform: translateX(80px) scale(0.85) rotate(3deg);
  opacity: 0.4;
  z-index: 10;
}

.fc-card.hidden {
  transform: translateX(0) scale(0.7);
  opacity: 0;
  z-index: 0;
}

/* CSS Mockups */
.fc-mockup-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(0, 194, 255, 0.15) 0%, transparent 60%);
  padding-bottom: 80px;
  transition: all 0.7s ease;
}

.fc-card:not(.active) .fc-mockup-container {
  filter: grayscale(100%) blur(2px) brightness(0.7);
}

/* PC Mockup */
.mockup-pc {
  width: 85%;
  aspect-ratio: 16/10;
  background: #111;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mockup-pc .mockup-header {
  height: 20px;
  background: #222;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.mockup-pc .mockup-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.mockup-pc .mockup-header .dot:nth-child(1) {
  background: #ff5f56;
}

.mockup-pc .mockup-header .dot:nth-child(2) {
  background: #ffbd2e;
}

.mockup-pc .mockup-header .dot:nth-child(3) {
  background: #27c93f;
}

/* Phone Mockup */
.mockup-phone {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 9/19;
  background: #111;
  border-radius: 24px;
  border: 4px solid #222;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mockup-phone .mockup-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 16px;
  background: #222;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 10;
}

.mockup-screen {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #000;
}

.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fc-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0.2s;
  pointer-events: none;
}

.fc-card.active .fc-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.fc-card-tag {
  background: var(--navy);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fc-card-desc {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.fc-live-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

.fc-card.active .fc-live-badge {
  opacity: 1;
}

.fc-live-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.fc-live-badge {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: monospace;
}

.fc-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* -- 5. Security Shields -- */
.security-shields {
  display: flex;
  gap: 12px;
}

.shield {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 194, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 194, 255, 0.3);
  transition: all 0.3s ease;
}

.shield.active {
  background: rgba(0, 194, 255, 0.2);
  color: var(--cyan);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 194, 255, 0.2);
}

.shield svg {
  width: 20px;
  height: 20px;
}

/* -- 6. Mobile Ready -- */
.mobile-ready {
  color: var(--cyan);
  transition: transform 0.5s ease;
}

.mobile-ready svg {
  width: 56px;
  height: 56px;
}

.bento-feat:hover .mobile-ready {
  transform: rotate(-5deg) scale(1.05);
}

.flex-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flex-title .title-icon {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

/* ─────────────────────────────────────────────────────────────
   PROYECTOS
   ───────────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--cyan-border);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  border-radius: 999px;
  transition: color .2s, background .2s;
}

.tab.active {
  background: linear-gradient(135deg, var(--cyan) 0%, #0a8fc4 100%);
  color: var(--navy);
}

.tab:hover:not(.active) {
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-2);
  border: 1px solid var(--cyan-border);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform .3s, border-color .3s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-border-strong);
}

.project-thumb {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-thumb-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .5s;
}

.project-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.project-card:hover .project-thumb-bg,
.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 15, 30, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.project-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.project-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.project-blurb {
  font-size: 0.85rem;
  color: var(--gray);
}

.project-card .visit {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
}

.project-card:hover .visit {
  opacity: 1;
  transform: translateY(0);
}

.project-card .visit svg {
  width: 14px;
  height: 14px;
}

.project-card.coming-soon {
  background: var(--navy-2);
}

.project-card.coming-soon .project-thumb-bg {
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 194, 255, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0, 194, 255, 0.04) 12px 13px);
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: var(--cyan);
  padding: 5px 10px;
  border: 1px solid var(--cyan-border-strong);
  border-radius: 999px;
}

.coming-soon-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 1.4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn .35s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────────────────────
   EQUIPO - TYPEWRITER TESTIMONIAL
   ───────────────────────────────────────────────────────────── */
.team-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.tw-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
}

.tw-member {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.tw-member.active {
  z-index: 20;
}

.tw-avatar-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--navy-2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  cursor: pointer;
}

.tw-member.active .tw-avatar-wrap {
  transform: scale(1.05);
  border-color: var(--cyan);
  animation: pulse-avatar 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-avatar {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

.tw-member .team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a8fc4 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
}

.tw-popup {
  position: absolute;
  bottom: 160px;
  left: 50%;
  margin-left: -140px;
  background: var(--navy-2);
  border: 1px solid var(--cyan-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-radius: var(--radius);
  width: 280px;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.tw-member.active .tw-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.tw-bio-wrap {
  min-height: 90px;
  height: auto;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
  white-space: pre-wrap;
}

.tw-cursor.animate-blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.tw-name {
  text-align: right;
  font-weight: 700;
  color: var(--cyan);
}

.tw-role {
  text-align: right;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* The Tail Bubbles */
.tw-tail {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tdot {
  background: var(--navy-2);
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tdot-1 { width: 14px; height: 14px; margin-bottom: 6px; }
.tdot-2 { width: 10px; height: 10px; margin-bottom: 4px; }
.tdot-3 { width: 6px; height: 6px; }

/* ─────────────────────────────────────────────────────────────
   CONTACTO
   ───────────────────────────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  width: 100%;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.contact-info .btn-block {
  max-width: 400px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   CONNECT WITH US COMPONENT (Left Side)
   ───────────────────────────────────────────────────────────── */
.cwu-container {
  border-radius: 24px;
  background: rgba(10, 15, 30, 0.4);
  border: 1px solid rgba(0, 194, 255, 0.15);
  box-shadow: 0 0 50px rgba(0, 194, 255, 0.1), 0 0 80px rgba(0, 194, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 32px;
  transition: all 0.5s ease;
  margin-bottom: 24px;
}

.cwu-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(0, 194, 255, 0.2), 0 0 100px rgba(0, 194, 255, 0.08);
}

.cwu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.cwu-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.cwu-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 194, 255, 0.15);
  color: var(--cyan);
  margin-bottom: 16px;
  position: relative;
}

.cwu-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cwu-icon svg {
  width: 28px;
  height: 28px;
  z-index: 1;
}

.cwu-social:hover .cwu-icon {
  transform: translateY(-8px) scale(1.1);
}

.cwu-social:hover .cwu-icon::before {
  opacity: 1;
}

.cwu-text {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.cwu-social:hover .cwu-text {
  opacity: 1;
  transform: translateY(4px);
}

.cwu-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 6px;
}

.cwu-value {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.4;
  white-space: nowrap;
}

/* Hover specific colors */
.cwu-social.email:hover .cwu-icon {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.6);
  border-color: var(--cyan);
}

.cwu-social.whatsapp:hover .cwu-icon {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  border-color: #25d366;
}

.cwu-social.instagram:hover .cwu-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
  border-color: transparent;
}

.cwu-social.location:hover .cwu-icon {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.6);
  border-color: #ff3b30;
}

.cwu-social:hover svg {
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20% { transform: translateX(-4px) rotate(-5deg); }
  40% { transform: translateX(4px) rotate(5deg); }
  60% { transform: translateX(-4px) rotate(-5deg); }
  80% { transform: translateX(4px) rotate(5deg); }
}

.contact-form {
  background: var(--navy-2);
  border: 1px solid var(--cyan-border);
  border-radius: 16px;
  padding: 32px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: 400 14px 'Inter', sans-serif;
  color: var(--white);
  transition: border-color .2s, background .2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(10, 15, 30, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.1);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300c2ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field select option {
  background: #0d1520;
  color: var(--white);
}

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.form-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-dim);
  text-align: center;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: #060912;
  border-top: 1px solid var(--cyan-border);
  padding: 64px 24px 24px;
  margin-top: 40px;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 38px;
  height: auto;
}

.footer-logo strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  font-style: italic;
}

.footer-meta {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

.footer-meta a:hover {
  color: var(--cyan);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray);
  transition: color .15s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-dim);
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────────────────────────
   Tweaks panel (vanilla)
   ───────────────────────────────────────────────────────────── */
.tweaks {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 320px;
  background: rgba(13, 21, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--cyan-border-strong);
  border-radius: var(--radius);
  padding: 18px;
  z-index: 70;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform .25s, opacity .25s, visibility .25s;
}

.tweaks.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cyan-border);
}

.tweaks-head h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tweaks-close {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tweaks-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.tweak-row {
  margin-bottom: 14px;
}

.tweak-row label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.tweak-row label .v {
  color: var(--cyan);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
}

.tweak-row input[type=range] {
  width: 100%;
  accent-color: var(--cyan);
}

.tweak-swatches {
  display: flex;
  gap: 6px;
}

.tweak-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
}

.tweak-swatch.active {
  border-color: var(--white);
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .showcase,
  .nosotros,
  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav {
    padding: 10px 16px;
  }

  .nav-inner {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    padding-right: 52px;
    min-height: 56px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-mobile-btn {
    display: inline-flex;
  }

  .nav-logo {
    width: 60px;
    height: 60px;
  }

  .nav-logo img {
    width: 70px;
    max-width: none;
  }

  .fab-whatsapp {
    display: flex;
  }

  .section {
    padding: 72px 18px;
  }

  .hero {
    padding: 100px 18px 56px;
  }

  .bento-features {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-feat--tall,
  .bento-feat--standard,
  .bento-feat--wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .nosotros-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-item--wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .hl-card--wide {
    grid-column: span 1;
  }
  .hl-line {
    margin-top: 16px;
  }

  .bento-item {
    padding: 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-split-layout { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .section-head.text-left { text-align: center; margin-bottom: 20px; }
  
  /* Bajar las caras y arreglar el popup */
  .tw-container { min-height: auto; gap: 16px; margin-top: 20px; padding-top: 240px; }
  .tw-avatar-wrap { width: 90px; height: 90px; }
  .tw-member .team-avatar { font-size: 1.6rem; }
  
  /* Centralizar/ajustar popups para que no choquen con los bordes */
  .tw-popup { bottom: 110px; width: 300px; max-width: 90vw; }
  
  .tw-member:nth-child(1) .tw-popup { left: -10px; margin-left: 0; }
  .tw-member:nth-child(1) .tw-tail { left: 55px; }
  
  .tw-member:nth-child(2) .tw-popup { left: 50%; margin-left: -150px; }
  .tw-member:nth-child(2) .tw-tail { left: 50%; }
  
  .tw-member:nth-child(3) .tw-popup { left: auto; right: -10px; margin-left: 0; }
  .tw-member:nth-child(3) .tw-tail { left: auto; right: 55px; transform: translateX(50%); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer {
    padding: 48px 18px 20px;
  }

  .showcase-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mockup {
    transform: none;
  }

  .mockup-body {
    grid-template-columns: 110px 1fr;
  }

  .tweaks {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
  }

  .contact-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .contact-list .ico {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .hero-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 64px 16px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .bento-item {
    padding: 16px;
    gap: 16px;
  }

  .bento-icon {
    width: 44px;
    height: 44px;
  }

  .contact-form {
    padding: 20px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-cta .btn-primary {
    padding: 16px 22px;
    font-size: 15px;
  }

  .pills {
    gap: 8px;
  }

  .pill {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* =========================================
   ULTRA PREMIUM EFFECTS
   ========================================= */

/* Scroll Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform-origin: 0%;
  z-index: 9999;
  /* Glow for the bar */
  box-shadow: 0 0 10px var(--color-accent-soft);
}

/* Uiverse Style Hover on Primary Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover::after {
  left: 150%;
}

/* Glass/Tilt Lift effect on Product Cards */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-accent-soft);
  border-color: var(--color-accent-border);
}

.product-card .ico-wrap {
  transition: transform 0.3s ease, background 0.3s ease;
}

.product-card:hover .ico-wrap {
  transform: scale(1.1);
  background: var(--color-accent);
  color: #fff;
}

/* =========================================
   SPOTLIGHT & SCRAMBLE EFFECTS
   ========================================= */

/* Scramble Dud Character Color */
.dud {
  color: var(--color-accent-soft);
}

/* Spotlight overlay for Cards */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(13, 148, 136, 0.15), transparent 40%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

/* Ensure content stays above the spotlight */
.product-card>* {
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   Survey Modal & Button
   ───────────────────────────────────────────────────────────── */
.fab-survey {
  position: fixed;
  bottom: 90px;
  right: 22px;
  background: var(--cyan, #00c2ff);
  color: var(--navy-2, #060a14);
  border: none;
  border-radius: 9999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fab-survey:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.survey-dialog {
  border: 1px solid var(--cyan-border, rgba(0, 194, 255, 0.2));
  border-radius: 16px;
  background: rgba(13, 21, 32, 0.95);
  color: #fff;
  padding: 0;
  width: 90%;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.survey-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.survey-dialog-content {
  padding: 24px;
}
.survey-dialog h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--cyan, #00c2ff);
  text-align: center;
}
.survey-group {
  margin-bottom: 20px;
  text-align: left;
}
.survey-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.survey-rating {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.survey-rating input[type="radio"] {
  display: none;
}
.survey-rating label {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  margin-bottom: 0;
}
.survey-rating input[type="radio"]:checked + label {
  background: var(--cyan, #00c2ff);
  color: var(--navy-2, #060a14);
  font-weight: 700;
  border-color: var(--cyan, #00c2ff);
}

.survey-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.survey-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}
.survey-checkboxes input[type="checkbox"] {
  accent-color: var(--cyan, #00c2ff);
}

.survey-select, .survey-textarea, .survey-input {
  width: 100%;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}
.survey-select:focus, .survey-textarea:focus, .survey-input:focus {
  outline: none;
  border-color: var(--cyan, #00c2ff);
}
.survey-select option {
  background: #0d1520;
  color: #fff;
}

.survey-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .survey-rating label {
    padding: 8px 0;
    font-size: 11px;
  }
}