  :root {
    --bg: #fdf8ec;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-soft: #fbf1d6;

    --beige-50: #faf3e0;
    --beige-100: #f3e6c4;
    --beige-200: #e8d6a3;

    --yellow-50: #fef9e7;
    --yellow-100: #fef3c7;
    --yellow-200: #fde68a;
    --yellow-300: #fde047;
    --yellow-400: #fbbf24;
    --yellow-500: #f59e0b;
    --yellow-600: #d97706;

    --lilac-50: #f5f3ff;
    --lilac-100: #ede9fe;
    --lilac-200: #ddd6fe;
    --lilac-300: #c4b5fd;
    --violet-400: #a78bfa;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --violet-700: #6d28d9;

    --accent: #1e40af;
    --accent-bright: #2563eb;
    --accent-soft: #dbeafe;

    --coral: #fb7185;
    --coral-soft: #ffe4e6;
    --emerald: #10b981;

    --text: #1c1917;
    --text-muted: #57534e;
    --text-dim: #a8a29e;

    --border: rgba(28, 25, 23, 0.08);
    --border-strong: rgba(28, 25, 23, 0.14);

    --gradient-hero: linear-gradient(120deg, #fde047 0%, #fbbf24 25%, #c4b5fd 55%, #7c3aed 80%, #1e40af 100%);
    --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fde047 50%, #fbbf24 100%);
    --gradient-violet: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 50%, #8b5cf6 100%);
    --gradient-bold: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #fbbf24 100%);

    --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.04);
    --shadow-md: 0 4px 20px rgba(217, 119, 6, 0.08), 0 2px 4px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 24px 48px -12px rgba(124, 58, 237, 0.25), 0 8px 16px rgba(217, 119, 6, 0.08);
    --shadow-glow: 0 24px 64px -16px rgba(124, 58, 237, 0.5);
    --shadow-bold: 0 30px 80px -20px rgba(124, 58, 237, 0.55), 0 12px 24px -8px rgba(37, 99, 235, 0.25);
  }
  [data-theme="dark"] {
    --bg: #0c0820;
    --bg-elevated: #1a1338;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-soft: rgba(196, 181, 253, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #fef3c7;
    --text-muted: #d6c79c;
    --text-dim: #a8956a;
    --yellow-100: rgba(251, 191, 36, 0.15);
    --lilac-100: rgba(196, 181, 253, 0.15);
    --accent-soft: rgba(37, 99, 235, 0.2);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: default;
  }
  h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 1.75rem; }
  .mono { font-family: 'JetBrains Mono', monospace; }

  /* === Scroll progress === */
  .scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, #fde047, #fbbf24, #c4b5fd, #7c3aed, #2563eb);
    z-index: 200; transition: width 0.05s linear;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
  }

  /* === Noise texture === */
  .noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    opacity: 0.025; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  /* === Animated grid pattern === */
  @keyframes grid-pan { from { background-position: 0 0; } to { background-position: 60px 60px; } }
  .bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pan 18s linear infinite;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
  }
  [data-theme="dark"] .bg-grid {
    background-image:
      linear-gradient(rgba(196, 181, 253, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196, 181, 253, 0.08) 1px, transparent 1px);
  }

  /* === Floating geometric primitives === */
  @keyframes drift-rotate-a { 0%,100% { transform: translate(0,0) rotate(0deg);} 25% { transform: translate(30px,-20px) rotate(90deg);} 50% { transform: translate(-20px,-40px) rotate(180deg);} 75% { transform: translate(-30px,20px) rotate(270deg);} }
  @keyframes drift-rotate-b { 0%,100% { transform: translate(0,0) rotate(0deg);} 50% { transform: translate(40px,30px) rotate(-180deg);} }
  @keyframes drift-rotate-c { 0%,100% { transform: translate(0,0) rotate(0deg) scale(1);} 50% { transform: translate(-30px,-25px) rotate(120deg) scale(1.1);} }
  @keyframes drift-rotate-d { 0%,100% { transform: translate(0,0) rotate(0deg);} 33% { transform: translate(20px,-30px) rotate(60deg);} 66% { transform: translate(-25px,15px) rotate(-60deg);} }
  @keyframes spin-y { from { transform: rotateY(0);} to { transform: rotateY(360deg);} }
  @keyframes float-pulse { 0%,100% { transform: translateY(0); opacity: 0.4;} 50% { transform: translateY(-12px); opacity: 0.8;} }

  .bg-shape {
    position: fixed; pointer-events: none; z-index: 0;
    opacity: 0.55; will-change: transform;
  }
  [data-theme="dark"] .bg-shape { opacity: 0.35; }
  .bg-shape svg { display: block; }

  .bg-shape.s1 { top: 12%; left: 4%; animation: drift-rotate-a 24s ease-in-out infinite; }
  .bg-shape.s2 { top: 18%; right: 5%; animation: drift-rotate-b 32s ease-in-out infinite; perspective: 200px; }
  .bg-shape.s2 svg { animation: spin-y 16s linear infinite; transform-style: preserve-3d; }
  .bg-shape.s3 { top: 55%; left: 6%; animation: drift-rotate-c 28s ease-in-out infinite; }
  .bg-shape.s4 { top: 65%; right: 4%; animation: drift-rotate-d 22s ease-in-out infinite; }
  .bg-shape.s5 { top: 38%; left: 48%; animation: float-pulse 6s ease-in-out infinite; }
  .bg-shape.s6 { top: 88%; left: 18%; animation: drift-rotate-b 26s ease-in-out infinite reverse; }
  .bg-shape.s7 { top: 4%; left: 42%; animation: float-pulse 8s ease-in-out infinite 1.5s; }
  .bg-shape.s8 { top: 75%; left: 55%; animation: drift-rotate-a 30s ease-in-out infinite reverse; }
  @media (max-width: 768px) {
    .bg-shape.s2, .bg-shape.s4, .bg-shape.s6, .bg-shape.s8 { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .bg-shape, .bg-grid { animation: none !important; }
  }

  /* === Keyframes === */
  @keyframes blob-drift-a { 0%,100% { transform: translate(0,0) scale(1);} 33% { transform: translate(40px,-30px) scale(1.1);} 66% { transform: translate(-20px,40px) scale(0.95);} }
  @keyframes blob-drift-b { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-50px,30px) scale(1.15);} }
  @keyframes blob-drift-c { 0%,100% { transform: translate(0,0);} 50% { transform: translate(30px,-40px);} }
  @keyframes gradient-shift { 0%,100% { background-position: 0% 50%;} 50% { background-position: 100% 50%;} }
  @keyframes pulse-node { 0%,100% { opacity:1; transform: scale(1);} 50% { opacity:.55; transform: scale(.75);} }
  @keyframes float-y { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
  @keyframes kenburns { 0% { transform: scale(1.05) translate(0,0);} 100% { transform: scale(1.2) translate(-2%,-2%);} }
  @keyframes shimmer { 0% { background-position:-200% center;} 100% { background-position:200% center;} }
  @keyframes fade-up { from { opacity:0; transform: translateY(28px);} to { opacity:1; transform: translateY(0);} }
  @keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
  @keyframes glow-pulse { 0%,100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);} 50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.55);} }
  @keyframes spin-slow { from { transform: rotate(0);} to { transform: rotate(360deg);} }
  @keyframes wiggle { 0%,100% { transform: rotate(-2deg);} 50% { transform: rotate(2deg);} }
  @keyframes scale-in { from { opacity:0; transform: scale(0.92);} to { opacity:1; transform: scale(1);} }

  /* === Reveal on scroll === */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
    .reveal { opacity: 1; transform: none; }
  }

  /* === Blobs === */
  .bg-blob {
    position: fixed; border-radius: 50%; filter: blur(120px);
    pointer-events: none; z-index: 0; will-change: transform;
  }
  .bg-blob-1 { width: 540px; height: 540px; background: #fde047; opacity: .45; top: -140px; right: -100px; animation: blob-drift-a 18s ease-in-out infinite; }
  .bg-blob-2 { width: 440px; height: 440px; background: #c4b5fd; opacity: .4; bottom: 15%; left: -100px; animation: blob-drift-b 22s ease-in-out infinite; }
  .bg-blob-3 { width: 340px; height: 340px; background: #fbbf24; opacity: .28; top: 45%; right: 8%; animation: blob-drift-c 25s ease-in-out infinite; }
  .bg-blob-4 { width: 280px; height: 280px; background: #a78bfa; opacity: .25; top: 80%; left: 30%; animation: blob-drift-a 20s ease-in-out infinite reverse; }
  [data-theme="dark"] .bg-blob { opacity: .18; }

  /* === Header === */
  header {
    position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px);
    background: rgba(253, 248, 236, 0.78); border-bottom: 1px solid var(--border);
  }
  [data-theme="dark"] header { background: rgba(12, 8, 32, 0.78); }
  .nav { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }
  .logo {
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.35rem;
    display: flex; align-items: center; gap: 0.65rem; color: var(--text); letter-spacing: -0.01em;
  }
  .logo svg { display: block; filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3)); animation: float-y 4s ease-in-out infinite; }
  /* === Neural N logo v2 === */
  @keyframes n-flow-a { from { stroke-dashoffset: 130;} to { stroke-dashoffset: 0;} }
  @keyframes n-flow-b { from { stroke-dashoffset: 0;} to { stroke-dashoffset: -130;} }
  @keyframes n-ring-cw { from { transform: rotate(0);} to { transform: rotate(360deg);} }
  @keyframes n-ring-ccw { from { transform: rotate(360deg);} to { transform: rotate(0);} }
  @keyframes n-node { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.45; transform: scale(1.45);} }
  @keyframes n-core { 0%,100% { opacity: 1; r: 2;} 50% { opacity: 0.4; r: 4;} }
  @keyframes n-halo { 0%,100% { opacity: 0.55; transform: scale(1);} 50% { opacity: 0.85; transform: scale(1.08);} }
  .neural-n {
    position: relative; display: inline-block; flex-shrink: 0;
    width: 40px; height: 40px;
    filter: drop-shadow(0 4px 14px rgba(124, 58, 237, 0.4));
  }
  .neural-n svg { display: block; width: 100%; height: 100%; }
  .neural-n .n-halo { transform-origin: 40px 40px; animation: n-halo 3.6s ease-in-out infinite; }
  .neural-n .n-ring-outer { transform-origin: 40px 40px; transform-box: fill-box; animation: n-ring-cw 22s linear infinite; }
  .neural-n .n-ring-inner { transform-origin: 40px 40px; transform-box: fill-box; animation: n-ring-ccw 14s linear infinite; }
  .neural-n .n-current-a { animation: n-flow-a 2.4s linear infinite; }
  .neural-n .n-current-b { animation: n-flow-b 3.4s linear infinite; }
  .neural-n .n-node { transform-box: fill-box; transform-origin: center; animation: n-node 1.9s ease-in-out infinite; }
  .neural-n .n-node.n2 { animation-delay: 0.45s; }
  .neural-n .n-node.n3 { animation-delay: 0.9s; }
  .neural-n .n-node.n4 { animation-delay: 1.35s; }
  .neural-n .n-core { transform-origin: center; animation: n-core 1.6s ease-in-out infinite; }
  [data-theme="dark"] .neural-n { filter: drop-shadow(0 4px 18px rgba(196, 181, 253, 0.5)); }

  /* XL variant for hero */
  .neural-n.xl { width: 120px; height: 120px; filter: drop-shadow(0 10px 32px rgba(124, 58, 237, 0.45)); }
  [data-theme="dark"] .neural-n.xl { filter: drop-shadow(0 10px 36px rgba(196, 181, 253, 0.55)); }

  .hero-logo-mark {
    margin: 0 auto 1.5rem;
    display: grid; place-items: center;
    animation: fade-up 1s ease-out backwards;
    position: relative;
  }
  .hero-logo-mark::before {
    content: ''; position: absolute; inset: -30px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.25), transparent 60%);
    filter: blur(20px); z-index: -1;
  }

  .logo-wordmark .accent { background: linear-gradient(135deg, #7c3aed, #1e40af); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  [data-theme="dark"] .logo-wordmark .accent { background: linear-gradient(135deg, #c4b5fd, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .nav-actions { display: flex; align-items: center; gap: 0.75rem; }
  .nav-links { display: none; }
  .nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: color 0.2s; position: relative; }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 2px; background: var(--gradient-bold); border-radius: 2px;
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }

  /* === Side dot navigation (desktop) === */
  .side-nav {
    position: fixed; right: 1.5rem; top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex; flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 1.1rem 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(-50%) translateX(20px);
    animation: side-nav-in 0.6s 0.6s ease-out forwards;
  }
  [data-theme="dark"] .side-nav { background: rgba(26, 19, 56, 0.7); }
  @keyframes side-nav-in { to { opacity: 1; transform: translateY(-50%) translateX(0); } }
  .side-nav a {
    position: relative;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(28, 25, 23, 0.18);
    transition: all 0.3s cubic-bezier(.4, 1.5, .6, 1);
    display: block; cursor: pointer;
  }
  [data-theme="dark"] .side-nav a { background: rgba(255, 255, 255, 0.18); }
  .side-nav a:hover, .side-nav a.is-active {
    background: var(--violet-600);
    transform: scale(1.4);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.55);
  }
  .side-nav a.is-active::before {
    content: ''; position: absolute; inset: -5px;
    border-radius: 50%; border: 2px solid var(--violet-600);
    opacity: 0.4; animation: side-active-ring 1.6s ease-in-out infinite;
  }
  @keyframes side-active-ring { 0%,100% { transform: scale(1); opacity: 0.4;} 50% { transform: scale(1.3); opacity: 0;} }
  .side-nav a::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 18px);
    top: 50%; transform: translateY(-50%) translateX(8px);
    background: var(--text); color: var(--bg);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s, transform 0.25s;
  }
  .side-nav a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
  .side-nav a::before {
    /* fallback - actual ::before is overridden by is-active */
  }
  @media (max-width: 860px) { .side-nav { display: none; } }

  .menu-toggle {
    background: var(--bg-elevated); border: 1px solid var(--border);
    width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.25s; box-shadow: var(--shadow-sm);
    color: var(--text);
  }
  .menu-toggle:hover { border-color: var(--violet-500); }

  /* Theme toggle switch (sun + moon visible) */
  .theme-toggle {
    position: relative; display: inline-flex; align-items: center;
    width: 72px; height: 36px; border-radius: 100px;
    background: var(--bg-elevated); border: 1px solid var(--border-strong);
    cursor: pointer; padding: 0; box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .theme-toggle:hover { border-color: var(--violet-500); box-shadow: var(--shadow-md); }
  .theme-toggle .tt-icon {
    flex: 1; display: grid; place-items: center; font-size: 0.9rem;
    color: var(--text-muted); z-index: 2; transition: color 0.25s;
    user-select: none; pointer-events: none;
  }
  .theme-toggle .tt-knob {
    position: absolute; top: 3px; left: 3px;
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #fde047, #fbbf24);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.45);
    transition: transform 0.35s cubic-bezier(.4, 1.5, .6, 1), background 0.35s;
    z-index: 1;
  }
  [data-theme="dark"] .theme-toggle .tt-knob {
    transform: translateX(36px);
    background: linear-gradient(135deg, #7c3aed, #1e40af);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.55);
  }
  [data-theme="light"] .theme-toggle .tt-sun { color: #5a3d12; font-weight: 700; }
  [data-theme="dark"] .theme-toggle .tt-moon { color: #fef3c7; font-weight: 700; }

  @media (max-width: 860px) {
    .nav-links { display: flex; position: fixed; inset: 64px 0 0 0; flex-direction: column;
      background: var(--bg); padding: 2.5rem 2rem; gap: 1.5rem;
      align-items: flex-start; transform: translateY(-110%); transition: transform .35s ease;
      border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
      list-style: none;
    }
    .nav-links.is-open { transform: translateY(0); }
    .nav-links a { font-size: 1.25rem; }
    .menu-toggle { display: flex; }
  }

  /* === Botones === */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.95rem 1.85rem; border-radius: 100px; border: none;
    font-weight: 600; font-size: 1rem; cursor: pointer; font-family: inherit;
    transition: transform .2s, box-shadow .2s, background .25s;
    text-decoration: none; position: relative; overflow: hidden;
    will-change: transform;
  }
  .btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: translateX(-100%); transition: transform .6s ease;
  }
  .btn:hover::before { transform: translateX(100%); }
  .btn-primary {
    background: linear-gradient(135deg, var(--violet-600), var(--accent-bright));
    color: white; box-shadow: 0 10px 28px -8px rgba(124, 58, 237, 0.55);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(124, 58, 237, 0.7); }
  .btn-ghost {
    background: var(--bg-elevated); color: var(--text); border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-sm);
  }
  .btn-ghost:hover { border-color: var(--violet-500); color: var(--violet-600); transform: translateY(-2px); }
  .btn-yellow {
    background: linear-gradient(135deg, var(--yellow-300), var(--yellow-500));
    color: #5a3d12; box-shadow: 0 10px 28px -8px rgba(245, 158, 11, 0.65);
  }
  .btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(245, 158, 11, 0.8); }
  .btn-icon { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.18); border-radius: 50%; font-size: 0.85rem; transition: transform .25s;
  }
  .btn:hover .btn-icon { transform: translateX(4px); }

  /* === Video utilities === */
  .post-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transform: scale(1.05);
    animation: kenburns 18s ease-in-out infinite alternate;
  }
  .video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(196, 181, 253, 0.2) 50%, rgba(30, 64, 175, 0.32) 100%);
    mix-blend-mode: multiply; pointer-events: none;
  }
  .video-badge {
    position: absolute; top: 14px; right: 14px;
    display: flex; align-items: center; gap: 6px;
    background: rgba(0, 0, 0, 0.55); color: white;
    padding: 5px 10px; border-radius: 100px;
    font-size: 0.7rem; font-weight: 600; backdrop-filter: blur(8px); z-index: 2;
    letter-spacing: 0.08em;
  }
  .video-badge .rec { width: 6px; height: 6px; border-radius: 50%; background: #fb7185; animation: pulse-node 1.2s ease-in-out infinite; }

  /* === Hero === */
  .hero {
    position: relative; z-index: 2;
    min-height: 92vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 5rem 0 6rem;
    border-radius: 0 0 36px 36px;
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
  }
  .hero-video-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(253, 248, 236, 0.55) 0%, rgba(253, 248, 236, 0.9) 100%),
                linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(196, 181, 253, 0.4), rgba(30, 64, 175, 0.5));
  }
  [data-theme="dark"] .hero-video-overlay {
    background: linear-gradient(180deg, rgba(12, 8, 32, 0.65) 0%, rgba(12, 8, 32, 0.92) 100%);
  }
  .hero-content { text-align: center; max-width: 880px; padding: 0 1.5rem; position: relative; z-index: 2; }

  .availability-pill {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem 0.4rem 0.55rem; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    margin-bottom: 1.75rem; box-shadow: var(--shadow-sm);
  }
  [data-theme="dark"] .availability-pill { background: rgba(255,255,255,0.06); }
  .availability-pill .live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); animation: pulse-node 1.6s ease-in-out infinite;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700;
    margin-bottom: 1.5rem; color: var(--text);
  }
  .hero h1 .line { display: block; overflow: hidden; }
  .hero h1 .line span { display: inline-block; animation: fade-up .9s cubic-bezier(.2,.7,.2,1) backwards; }
  .hero h1 .line:nth-child(1) span { animation-delay: 0.05s; }
  .hero h1 .line:nth-child(2) span { animation-delay: 0.2s; }
  .gradient-text {
    background: var(--gradient-hero); background-size: 300% 300%;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease-in-out infinite;
  }
  .hero p { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); max-width: 640px; margin: 0 auto 2.5rem; animation: fade-up 1s ease-out 0.35s backwards; }
  .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fade-up 1s ease-out 0.5s backwards; }

  .trust-row {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-top: 2.25rem; flex-wrap: wrap; animation: fade-up 1s ease-out 0.7s backwards;
  }
  .avatar-stack { display: flex; }
  .avatar-stack .av {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2.5px solid var(--bg); background-size: cover; background-position: center;
    margin-left: -10px; box-shadow: var(--shadow-sm);
  }
  .avatar-stack .av:first-child { margin-left: 0; }
  .stars { color: var(--yellow-500); letter-spacing: 1px; font-size: 0.95rem; }
  .trust-text { color: var(--text-muted); font-size: 0.9rem; }
  .trust-text strong { color: var(--text); font-weight: 700; }

  /* Floating hero cards */
  .hero-float {
    position: absolute; z-index: 1; background: var(--bg-elevated);
    border: 1px solid var(--border); border-radius: 18px;
    padding: 0.85rem 1rem; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    animation: float-y 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
  }
  .hero-float.f1 { top: 22%; left: 4%; }
  .hero-float.f2 { top: 32%; right: 5%; animation-delay: 1.2s; }
  .hero-float.f3 { bottom: 24%; left: 8%; animation-delay: 2s; }
  .hero-float .ic {
    width: 42px; height: 42px; border-radius: 10px;
    display: grid; place-items: center; font-size: 1.05rem;
    background: var(--gradient-warm);
    position: relative; overflow: hidden;
    flex-shrink: 0;
  }
  .hero-float .ic video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .hero-float .ic .emoji {
    position: relative; z-index: 2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  }
  .hero-float .ic::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.55), rgba(124, 58, 237, 0.4));
    mix-blend-mode: multiply;
  }
  .hero-float.f2 .ic { background: var(--gradient-violet); }
  .hero-float.f2 .ic::after { background: linear-gradient(135deg, rgba(196, 181, 253, 0.6), rgba(124, 58, 237, 0.55)); }
  .hero-float.f3 .ic { background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright)); }
  .hero-float.f3 .ic::after { background: linear-gradient(135deg, rgba(30, 64, 175, 0.55), rgba(37, 99, 235, 0.55)); }
  .hero-float small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.72rem; }
  @media (max-width: 900px) { .hero-float { display: none; } }

  /* === Stats === */
  .stats-wrap { position: relative; z-index: 3; }
  .stats {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
    margin: -3rem auto 0; padding: 0 1.5rem;
  }
  .stat-chip {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.95rem 1.5rem; border-radius: 100px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    box-shadow: var(--shadow-md); font-weight: 500; font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .stat-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .stat-chip .dot { width: 10px; height: 10px; border-radius: 50%; animation: pulse-node 2s ease-in-out infinite; }
  .dot-yellow { background: var(--yellow-400); box-shadow: 0 0 10px var(--yellow-400); }
  .dot-violet { background: var(--violet-500); box-shadow: 0 0 10px var(--violet-500); animation-delay: 0.3s; }
  .dot-blue { background: var(--accent-bright); box-shadow: 0 0 10px var(--accent-bright); animation-delay: 0.6s; }
  .dot-coral { background: var(--coral); box-shadow: 0 0 10px var(--coral); animation-delay: 0.9s; }
  .stat-chip strong { color: var(--text); font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; }

  /* === Tech marquee === */
  .marquee-wrap {
    margin-top: 4.5rem; padding: 2.5rem 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, transparent, var(--bg-soft) 20%, var(--bg-soft) 80%, transparent);
    overflow: hidden;
  }
  .marquee-label {
    text-align: center; font-size: 0.78rem; font-weight: 600;
    color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
  }
  .marquee {
    display: flex; gap: 3rem; align-items: center;
    width: max-content; animation: marquee 35s linear infinite;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  }
  .marquee-item {
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.5rem;
    color: var(--text-muted); white-space: nowrap; opacity: 0.7;
    transition: color 0.3s, opacity 0.3s;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .marquee-item:hover { color: var(--violet-600); opacity: 1; }
  .marquee-item .bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-500); opacity: 0.6; }

  /* === Sección general === */
  .section { position: relative; z-index: 2; padding: 6rem 0; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.95rem 0.4rem 0.7rem;
    background: var(--lilac-100); color: var(--violet-600);
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .section-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  }
  .section-eyebrow.yellow { background: var(--yellow-100); color: var(--yellow-600); }
  .section-eyebrow.coral { background: var(--coral-soft); color: #be123c; }
  .section-eyebrow.blue { background: var(--accent-soft); color: var(--accent); }
  .section-title { font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 700; color: var(--text); }
  .section-subtitle { color: var(--text-muted); margin-top: 0.85rem; font-size: 1.1rem; max-width: 620px; }

  /* === Servicios alternados === */
  .service {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4.5rem; align-items: center;
    margin-bottom: 7rem;
  }
  .service:last-child { margin-bottom: 0; }
  .service.reverse .service-media { order: 2; }
  @media (max-width: 900px) { .service { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
    .service.reverse .service-media { order: 0; } }

  .service-media {
    position: relative; aspect-ratio: 4 / 3;
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-bold);
    border: 1px solid var(--border);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  }
  .service-features { list-style: none; margin: 1.5rem 0 1.5rem; }
  .service-features li {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.6rem 0; color: var(--text-muted); font-size: 1rem;
  }
  .service-features li::before {
    content: "✓"; flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gradient-warm); color: var(--yellow-600);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    margin-top: 2px;
  }
  .service.violet .service-features li::before { background: var(--gradient-violet); color: var(--violet-700); box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3); }
  .service.blue .service-features li::before { background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright)); color: white; box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3); }

  .tech-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 1.75rem; }
  .tech-pill {
    padding: 0.35rem 0.85rem; border-radius: 100px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 500;
    background: var(--bg-elevated); color: var(--text-muted);
    border: 1px solid var(--border-strong);
    transition: all 0.2s;
  }
  .tech-pill:hover { color: var(--violet-600); border-color: var(--violet-500); transform: translateY(-2px); }

  /* === Proceso === */
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    position: relative;
  }
  /* connecting line */
  .process-line {
    display: none;
    position: absolute; top: 90px; left: 12%; right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--violet-300) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  @media (min-width: 901px) { .process-line { display: block; } }
  @media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
  .process-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s;
    position: relative; z-index: 1;
  }
  .process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-bold); }
  .process-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
  .discovery-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  @keyframes disc-talk { 0%,100% { transform: translateY(0) rotate(0);} 50% { transform: translateY(-2px) rotate(1deg);} }
  @keyframes disc-talk-r { 0%,100% { transform: translateY(0) rotate(0);} 50% { transform: translateY(-2px) rotate(-1deg);} }
  @keyframes disc-arm { 0%,100% { transform: rotate(0);} 50% { transform: rotate(-20deg);} }
  @keyframes disc-arm-r { 0%,100% { transform: rotate(0);} 50% { transform: rotate(15deg);} }
  @keyframes disc-bubble-pop { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.97);} }
  @keyframes disc-dot { 0%,100% { opacity: 0.3; transform: translateY(0);} 50% { opacity: 1; transform: translateY(-2px);} }
  @keyframes disc-bulb-glow { 0%,100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));} 50% { transform: translateY(-3px) scale(1.05); filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.9));} }
  @keyframes disc-spark { 0%,100% { opacity: 0.3; transform: translateY(0) scale(1);} 50% { opacity: 1; transform: translateY(-6px) scale(1.2);} }
  .disc-char-l { transform-origin: 100px 130px; animation: disc-talk 3.4s ease-in-out infinite; }
  .disc-char-r { transform-origin: 220px 130px; animation: disc-talk-r 3.2s ease-in-out infinite; }
  .disc-arm-l { transform-origin: 70px 140px; animation: disc-arm 2s ease-in-out infinite; }
  .disc-arm-r { transform-origin: 250px 140px; animation: disc-arm-r 2.2s ease-in-out infinite; }
  .disc-bubble-l { animation: disc-bubble-pop 3.4s ease-in-out infinite; }
  .disc-bubble-r { animation: disc-bubble-pop 3.2s ease-in-out infinite 1.5s; }
  .disc-dot { animation: disc-dot 1.4s ease-in-out infinite; }
  .disc-dot.d1, .disc-dot.d4 { animation-delay: 0s; }
  .disc-dot.d2, .disc-dot.d5 { animation-delay: 0.2s; }
  .disc-dot.d3, .disc-dot.d6 { animation-delay: 0.4s; }
  .disc-bulb { transform-origin: 160px 50px; animation: disc-bulb-glow 2.2s ease-in-out infinite; }
  .disc-spark.s1 { animation: disc-spark 2.4s ease-in-out infinite; }
  .disc-spark.s2 { animation: disc-spark 2.4s ease-in-out infinite 0.6s; }
  .disc-spark.s3 { animation: disc-spark 2.4s ease-in-out infinite 1.2s; }
  .process-step {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    color: white; font-size: 1rem;
    background: linear-gradient(135deg, var(--violet-600), var(--accent-bright));
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
    border: 2px solid white;
  }
  .process-content { padding: 1.5rem; }
  .process-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
  .process-content p { color: var(--text-muted); font-size: 0.92rem; }
  .process-meta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.85rem; font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem; color: var(--violet-600); font-weight: 600;
  }

  /* === Why us grid === */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
  .feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 22px; box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s, border-color 0.25s;
    position: relative; overflow: hidden;
  }
  .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-bold); border-color: var(--lilac-200); }
  .feature-media {
    position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  }
  .feature-media::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
  }
  .feature-body { padding: 1.75rem 2rem 2rem; position: relative; }
  .feature-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    transition: transform 0.35s;
    position: absolute; top: -32px; left: 1.75rem;
    border: 3px solid var(--bg-card);
    box-shadow: var(--shadow-md);
  }
  .feature-body { padding-top: 2.75rem; }
  .feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.05); }
  .feature-icon.yellow { background: var(--gradient-warm); }
  .feature-icon.violet { background: var(--gradient-violet); }
  .feature-icon.blue { background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright)); }
  .feature-icon.coral { background: linear-gradient(135deg, var(--coral-soft), var(--coral)); }
  .feature-icon.beige { background: linear-gradient(135deg, var(--beige-100), var(--beige-200)); }
  .feature-icon.mixed { background: var(--gradient-hero); }
  .feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
  .feature-card p { color: var(--text-muted); font-size: 0.95rem; }

  /* === Testimonios === */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
  .testimonial {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 22px; padding: 2rem; position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s, box-shadow 0.35s;
  }
  .testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .testimonial::before {
    content: '"'; position: absolute; top: -10px; left: 22px;
    font-family: 'Space Grotesk', sans-serif; font-size: 5rem; line-height: 1;
    background: var(--gradient-bold); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .testimonial p {
    color: var(--text); font-size: 0.98rem; line-height: 1.65;
    margin: 0.5rem 0 1.5rem; position: relative;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
  .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background-size: cover; background-position: center;
    border: 2px solid var(--bg);
  }
  .testimonial-author .name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
  .testimonial-author .role { font-size: 0.82rem; color: var(--text-muted); }

  /* === CTA banner V2 === */
  .cta-banner {
    position: relative; overflow: hidden;
    border-radius: 32px; padding: 4rem 3.5rem;
    box-shadow: var(--shadow-glow);
    min-height: 380px;
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center;
  }
  @media (max-width: 860px) { .cta-banner { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2.5rem; } }
  .cta-banner-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(30, 64, 175, 0.92)),
                radial-gradient(circle at 25% 15%, rgba(253, 224, 71, 0.45) 0%, transparent 55%);
  }
  .cta-banner > * { position: relative; z-index: 2; }
  .cta-left .cta-eyebrow {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.95rem 0.4rem 0.7rem;
    background: rgba(253, 224, 71, 0.2); color: #fde047;
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1.25rem; border: 1px solid rgba(253, 224, 71, 0.3);
  }
  .cta-left .cta-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fde047; animation: pulse-node 1.6s ease-in-out infinite; }
  .cta-banner h2 {
    color: white; font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    line-height: 1.1; margin-bottom: 1rem;
  }
  .cta-banner h2 .accent {
    background: linear-gradient(135deg, #fde047, #fbbf24);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 1.75rem; font-size: 1.05rem; max-width: 480px; }
  .cta-banner .cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .cta-banner .btn-yellow { font-size: 1rem; padding: 0.95rem 1.6rem; }
  .cta-banner .btn-outline {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.4); padding: 0.9rem 1.5rem;
  }
  .cta-banner .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
  .cta-trust {
    display: flex; gap: 1.25rem; margin-top: 1.5rem; flex-wrap: wrap;
    color: rgba(255,255,255,0.85); font-size: 0.82rem;
  }
  .cta-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
  .cta-trust span::before { content: '✓'; color: #fde047; font-weight: 700; }

  /* Right column: deliverables card */
  .cta-right {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px; padding: 1.85rem 1.85rem;
    position: relative; overflow: hidden;
  }
  .cta-right::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.35), transparent 70%);
    filter: blur(10px);
  }
  .cta-right .cta-right-title {
    color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .cta-right .cta-right-title::before {
    content: '🎁'; font-size: 1rem;
  }
  .cta-deliverables { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .cta-deliverables li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    color: white; font-size: 0.96rem; font-weight: 500; line-height: 1.4;
  }
  .cta-deliverables li::before {
    content: '✓'; flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #fde047, #fbbf24); color: #5a3d12;
    display: grid; place-items: center;
    font-weight: 800; font-size: 0.72rem;
    margin-top: 1px;
    box-shadow: 0 4px 10px rgba(253, 224, 71, 0.35);
  }
  .cta-availability {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; gap: 0.65rem;
    color: rgba(255,255,255,0.92); font-size: 0.88rem;
  }
  .cta-availability .live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25); animation: pulse-node 1.6s ease-in-out infinite;
  }
  .cta-banner-deco {
    position: absolute; width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.6), transparent 70%);
    z-index: 1; filter: blur(50px);
  }
  .cta-banner-deco.d1 { top: -70px; left: -70px; }
  .cta-banner-deco.d2 { bottom: -80px; right: -50px; background: radial-gradient(circle, rgba(196, 181, 253, 0.7), transparent 70%); }

  /* === Contacto === */
  .contact-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 3rem; align-items: stretch;
  }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 26px; padding: 2.5rem; box-shadow: var(--shadow-md);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
  .form-field { margin-bottom: 1rem; }
  .form-field label {
    display: block; margin-bottom: 0.45rem;
    font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%; padding: 0.95rem 1rem;
    background: var(--bg); border: 1px solid var(--border-strong);
    border-radius: 14px; color: var(--text); font-family: inherit; font-size: 0.95rem;
    transition: all 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none; border-color: var(--violet-500);
    box-shadow: 0 0 0 4px var(--lilac-100);
  }
  .form-field textarea { min-height: 130px; resize: vertical; }
  .contact-info {
    background: var(--gradient-hero); background-size: 200% 200%;
    animation: gradient-shift 10s ease-in-out infinite;
    border-radius: 26px; padding: 2.5rem;
    color: white; display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-glow);
  }
  .contact-info::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3) 0%, transparent 50%);
  }
  .contact-info > * { position: relative; z-index: 1; }
  .contact-info h3 { font-size: 1.85rem; margin-bottom: 1rem; }
  .contact-info p { opacity: 0.94; margin-bottom: 2rem; font-size: 1rem; }
  .contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .contact-list li {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; background: rgba(255,255,255,0.15);
    border-radius: 16px; backdrop-filter: blur(10px);
    transition: all 0.25s;
  }
  .contact-list li:hover { background: rgba(255,255,255,0.25); transform: translateX(6px); }
  .contact-list a { color: white; font-weight: 600; }
  .contact-list .icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,0.22); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    position: relative; overflow: hidden;
  }
  .contact-list .icon video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .contact-list .icon::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(30, 64, 175, 0.55));
  }
  .contact-list .icon .emoji {
    position: relative; z-index: 2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  }
  .contact-list .label { font-size: 0.75rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }

  /* === Sticky mobile CTA === */
  .mobile-sticky-cta {
    display: none; position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
    z-index: 90; background: var(--bg-elevated);
    border: 1px solid var(--border); border-radius: 100px;
    padding: 0.6rem 0.6rem 0.6rem 1.25rem;
    box-shadow: var(--shadow-bold);
    align-items: center; justify-content: space-between;
    transform: translateY(150%); transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  }
  .mobile-sticky-cta.is-visible { transform: translateY(0); }
  .mobile-sticky-cta .label { font-weight: 600; font-size: 0.92rem; color: var(--text); }
  .mobile-sticky-cta .label small { display: block; font-weight: 500; font-size: 0.75rem; color: var(--text-muted); }
  @media (max-width: 768px) { .mobile-sticky-cta { display: flex; } body { padding-bottom: 5rem; } }

  /* === Footer V2 — dark bold === */
  footer {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, #1f1640 0%, #0c0820 60%, #050313 100%);
    color: #fef3c7;
    padding: 5rem 0 0; margin-top: 6rem;
    border-radius: 36px 36px 0 0;
    z-index: 3;
  }
  footer .container { position: relative; z-index: 2; }
  footer::before {
    content: ''; position: absolute; top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 4px;
    background: linear-gradient(90deg, #fde047, #fbbf24, #fde047);
    border-radius: 0 0 4px 4px;
  }
  /* decorative orbs */
  footer .footer-orb {
    position: absolute; border-radius: 50%; filter: blur(80px);
    pointer-events: none; z-index: 0;
  }
  footer .footer-orb.o1 { width: 360px; height: 360px; top: -100px; left: -100px; background: rgba(124, 58, 237, 0.4); }
  footer .footer-orb.o2 { width: 280px; height: 280px; bottom: -80px; right: -80px; background: rgba(251, 191, 36, 0.25); }
  footer .footer-orb.o3 { width: 220px; height: 220px; top: 40%; left: 50%; transform: translateX(-50%); background: rgba(30, 64, 175, 0.3); }

  /* Top CTA strip */
  .footer-cta {
    text-align: center; max-width: 720px; margin: 0 auto 3.5rem;
  }
  .footer-eyebrow {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.95rem 0.4rem 0.7rem;
    background: rgba(253, 224, 71, 0.18); color: #fde047;
    border: 1px solid rgba(253, 224, 71, 0.3);
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }
  .footer-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fde047;
    animation: pulse-node 1.6s ease-in-out infinite;
  }
  .footer-cta h2 {
    color: #fef3c7; font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.1; margin-bottom: 1.75rem; font-weight: 700;
  }
  .footer-cta h2 .grad {
    background: linear-gradient(135deg, #fde047, #fbbf24, #fb7185);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease-in-out infinite;
  }

  /* Huge wordmark */
  .footer-mark-wrap {
    position: relative; margin: 1rem 0 3rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  }
  .footer-mark-text {
    display: block; text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; line-height: 0.9;
    font-size: clamp(3rem, 14vw, 10rem);
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #7c3aed 0%, #fbbf24 30%, #1e40af 60%, #7c3aed 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 16s linear infinite;
    user-select: none;
  }

  /* Grid */
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem; padding: 3rem 0 2rem;
    border-top: 1px solid rgba(254, 243, 199, 0.1);
  }
  @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

  .footer-col h4 {
    margin-bottom: 1rem; font-size: 0.74rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: #fbbf24; font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a {
    color: rgba(254, 243, 199, 0.7); font-size: 0.94rem;
    transition: color 0.2s, padding-left 0.2s;
    position: relative;
  }
  .footer-col a:hover { color: #fde047; padding-left: 0.5rem; }
  .footer-col a:hover::before { width: 6px; opacity: 1; }
  .footer-col a::before {
    content: ''; position: absolute; left: -2px; top: 50%;
    width: 0; height: 2px; background: #fde047;
    transition: all 0.2s; opacity: 0;
  }
  .footer-col p { color: rgba(254, 243, 199, 0.65); font-size: 0.92rem; line-height: 1.55; }

  /* Footer logo legibility (always dark bg) */
  footer .logo-wordmark {
    color: #fef3c7 !important;
    font-size: 1.5rem;
    gap: 0.7rem;
  }
  footer .logo-wordmark .accent {
    background: linear-gradient(135deg, #fde047, #fbbf24) !important;
    -webkit-background-clip: text !important;
            background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700;
  }
  footer .neural-n { filter: drop-shadow(0 4px 18px rgba(196, 181, 253, 0.55)); }

  /* Social */
  .footer-social {
    display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap;
  }
  .footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(254, 243, 199, 0.8);
    transition: all 0.25s;
  }
  .footer-social a:hover {
    background: linear-gradient(135deg, var(--violet-600), var(--accent-bright));
    border-color: transparent;
    color: white;
    transform: translateY(-3px) rotate(-4deg);
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.4);
  }

  /* Bottom bar */
  .footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(254, 243, 199, 0.1);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    align-items: center;
    color: rgba(254, 243, 199, 0.5); font-size: 0.85rem;
  }
  .footer-bottom .dot-sep { color: rgba(254, 243, 199, 0.25); }
  .footer-bottom .live-pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.25rem 0.7rem 0.25rem 0.55rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px; color: #6ee7b7;
    font-size: 0.78rem; font-weight: 600;
  }
  .footer-bottom .live-pill::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
    animation: pulse-node 1.6s ease-in-out infinite;
  }

  /* Stats below CTA */
  .footer-cta-stats {
    display: flex; justify-content: center; gap: 2.5rem;
    margin-top: 2rem; flex-wrap: wrap;
    padding-top: 1.5rem; border-top: 1px solid rgba(254,243,199,0.08);
  }
  .footer-cta-stats .stat-item {
    display: inline-flex; flex-direction: column; align-items: center;
    color: rgba(254,243,199,0.7); font-size: 0.82rem;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .footer-cta-stats strong {
    color: #fde047; font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; font-size: 1.65rem;
    line-height: 1; margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #fde047, #fbbf24);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Wordmark hover effect (perspective tilt + speed gradient) */
  .footer-mark-wrap { perspective: 1200px; cursor: default; }
  .footer-mark-text {
    display: inline-block; width: 100%;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1), letter-spacing 0.6s ease;
  }
  .footer-mark-wrap:hover .footer-mark-text {
    transform: scale(1.025);
    letter-spacing: -0.04em;
    animation: gradient-shift 4s linear infinite;
  }

  /* Newsletter signup */
  .footer-newsletter p {
    color: rgba(254, 243, 199, 0.65);
    font-size: 0.88rem; line-height: 1.5;
    margin-bottom: 1rem;
  }
  .newsletter-form {
    display: flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; padding: 0.3rem 0.3rem 0.3rem 1.15rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .newsletter-form:focus-within {
    border-color: #fde047;
    background: rgba(253, 224, 71, 0.05);
  }
  .newsletter-form input {
    flex: 1; min-width: 0; background: transparent; border: none;
    color: #fef3c7; font-family: inherit; font-size: 0.9rem;
    outline: none; padding: 0.45rem 0;
  }
  .newsletter-form input::placeholder { color: rgba(254,243,199,0.4); }
  .newsletter-form button {
    flex-shrink: 0;
    background: linear-gradient(135deg, #fde047, #fbbf24);
    border: none; color: #5a3d12;
    width: 36px; height: 36px; border-radius: 50%;
    font-weight: 800; font-size: 0.95rem; cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    display: grid; place-items: center;
    box-shadow: 0 4px 12px rgba(253, 224, 71, 0.35);
  }
  .newsletter-form button:hover {
    transform: scale(1.1) rotate(-15deg);
    box-shadow: 0 6px 18px rgba(253, 224, 71, 0.55);
  }

  /* Tech marquee in footer */
  .footer-tech-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(254,243,199,0.08);
    border-bottom: 1px solid rgba(254,243,199,0.08);
    padding: 1rem 0;
    background: rgba(0,0,0,0.25);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .footer-tech-track {
    display: flex; gap: 1.5rem; align-items: center;
    width: max-content;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem; font-weight: 500;
    color: rgba(254, 243, 199, 0.55);
    letter-spacing: 0.06em;
    animation: marquee 32s linear infinite;
  }
  .footer-tech-track .dot { color: #fbbf24; opacity: 0.7; }
  .footer-tech-track .label { color: #fde047; font-weight: 700; }

  /* Back-to-top button */
  .footer-totop {
    position: absolute; right: 2rem; top: 2rem;
    width: 54px; height: 54px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fde047;
    font-size: 1.5rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(.4,1.5,.6,1);
    z-index: 10;
    backdrop-filter: blur(8px);
  }
  .footer-totop:hover {
    background: linear-gradient(135deg, var(--violet-600), var(--accent-bright));
    border-color: transparent; color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.5);
  }
  @media (max-width: 600px) { .footer-totop { right: 1rem; top: 1rem; width: 46px; height: 46px; font-size: 1.2rem; } }


/* ===== Multipagina: componentes nuevos ===== */
.nav-links a.is-active{color:var(--violet-600);}
.nav-cta{padding:.55rem 1rem;font-size:.9rem;}
@media(max-width:900px){.nav-cta{display:none;}}

/* WhatsApp flotante */
.wa-float{position:fixed;right:1.1rem;bottom:1.1rem;z-index:120;width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:#25D366;color:#fff;box-shadow:0 12px 30px -8px rgba(37,211,102,.6);transition:transform .2s ease;}
.wa-float:hover{transform:scale(1.08) translateY(-2px);}
@media(max-width:768px){.wa-float{bottom:5.2rem;}}

/* Page hero */
.page-hero{padding:9rem 0 2.5rem;position:relative;z-index:2;}
.breadcrumb{font-size:.8rem;color:var(--text-dim);font-family:'JetBrains Mono',monospace;margin-bottom:1.1rem;}
.breadcrumb a{color:var(--text-muted);}
.breadcrumb a:hover{color:var(--violet-600);}
.breadcrumb span{margin:0 .35rem;opacity:.5;}
.page-title{font-size:clamp(2.3rem,5vw,3.6rem);font-weight:700;color:var(--text);margin-top:.4rem;max-width:14ch;}
.page-sub{color:var(--text-muted);font-size:1.15rem;max-width:620px;margin-top:1rem;}

/* CTA strip */
.cta-strip{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;padding:2.6rem;border-radius:24px;background:var(--gradient-warm);box-shadow:var(--shadow-md);}
.cta-strip h2{font-size:1.9rem;color:#3b2a05;}
.cta-strip p{color:#6b4e12;margin-top:.4rem;}

/* Values grid */
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;}
@media(max-width:900px){.values-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.values-grid{grid-template-columns:1fr;}}
.value-card{background:var(--bg-card,rgba(255,255,255,.6));border:1px solid var(--border);border-radius:20px;padding:1.8rem;box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease;}
.value-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.value-card h3{font-size:1.25rem;margin:.9rem 0 .5rem;}
.value-card p{color:var(--text-muted);font-size:.97rem;}

/* About split */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
@media(max-width:860px){.about-split{grid-template-columns:1fr;}}
.about-media{border-radius:22px;overflow:hidden;position:relative;aspect-ratio:4/3;box-shadow:var(--shadow-lg);}
.about-media video{width:100%;height:100%;object-fit:cover;}
.about-stats{display:flex;gap:2rem;margin-top:1.6rem;flex-wrap:wrap;}
.about-stats strong{font-family:'Space Grotesk',sans-serif;font-size:2rem;color:var(--violet-600);display:block;}
.about-stats span{font-size:.85rem;color:var(--text-muted);}

/* Blog */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.8rem;}
@media(max-width:900px){.blog-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.blog-grid{grid-template-columns:1fr;}}
.blog-card{background:var(--bg-card,rgba(255,255,255,.65));border:1px solid var(--border);border-radius:20px;overflow:hidden;display:flex;flex-direction:column;transition:transform .25s ease,box-shadow .25s ease;}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);}
.blog-card-cover{position:relative;aspect-ratio:16/10;overflow:hidden;}
.blog-card-cover img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.blog-card:hover .blog-card-cover img{transform:scale(1.06);}
.blog-cat{position:absolute;top:.8rem;left:.8rem;background:var(--yellow-300);color:#3b2a05;font-size:.72rem;font-weight:700;padding:.3rem .7rem;border-radius:999px;text-transform:uppercase;letter-spacing:.04em;}
.blog-card-body{padding:1.4rem;display:flex;flex-direction:column;gap:.6rem;flex:1;}
.blog-card-body h3{font-size:1.18rem;line-height:1.25;}
.blog-card-body p{color:var(--text-muted);font-size:.94rem;flex:1;}
.blog-more{color:var(--violet-600);font-weight:600;font-size:.92rem;}
.blog-read{color:var(--text-dim);font-size:.78rem;font-family:'JetBrains Mono',monospace;}

/* Article */
.article{max-width:760px;margin:0 auto;}
.article-cover{border-radius:22px;overflow:hidden;margin-bottom:2.2rem;box-shadow:var(--shadow-lg);}
.article-cover img{width:100%;display:block;}
.article-body p{color:var(--text-muted);font-size:1.08rem;margin:1.1rem 0;line-height:1.75;}
.article-body h2{font-size:1.6rem;margin:2.2rem 0 .6rem;color:var(--text);}
.article-body h3{font-size:1.25rem;margin:1.6rem 0 .5rem;color:var(--text);}
.article-cta{margin-top:2.6rem;padding:2rem;border-radius:20px;background:var(--bg-soft);border:1px solid var(--border);text-align:center;}
.article-cta h3{font-size:1.4rem;margin-bottom:.5rem;}
.article-cta p{color:var(--text-muted);margin-bottom:1.2rem;}
.article-rel{max-width:760px;margin:3rem auto 0;display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
@media(max-width:600px){.article-rel{grid-template-columns:1fr;}}
.rel-title{grid-column:1/-1;font-family:'JetBrains Mono',monospace;font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:var(--text-dim);}
.rel-card{padding:1.2rem;border:1px solid var(--border);border-radius:16px;background:var(--bg-card,rgba(255,255,255,.5));transition:transform .2s ease,box-shadow .2s ease;}
.rel-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);}
.rel-card h4{font-size:1.02rem;margin-top:.4rem;line-height:1.3;}

/* Contact icons */
.ci-icon{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:rgba(255,255,255,.18);font-size:1.1rem;flex-shrink:0;}
.form-note{font-size:.85rem;color:var(--text-muted);margin-top:.9rem;}
.form-note a{color:var(--violet-600);font-weight:600;}

/* Opiniones */
.rating-panel{display:grid;grid-template-columns:auto 1fr;gap:2.5rem;align-items:center;padding:2.2rem;border-radius:24px;background:var(--bg-card,rgba(255,255,255,.6));border:1px solid var(--border);box-shadow:var(--shadow-md);margin-bottom:2.5rem;}
@media(max-width:680px){.rating-panel{grid-template-columns:1fr;text-align:center;}}
.rating-score{text-align:center;padding-right:2.5rem;border-right:1px solid var(--border);}
@media(max-width:680px){.rating-score{border-right:none;padding-right:0;border-bottom:1px solid var(--border);padding-bottom:1.4rem;}}
.rating-num{font-family:'Space Grotesk',sans-serif;font-size:3.8rem;font-weight:700;line-height:1;color:var(--text);}
.stars,.stars-big{letter-spacing:2px;display:inline-block;}
.stars-big{font-size:1.5rem;margin:.4rem 0;}
.rating-count{color:var(--text-muted);font-size:.9rem;}
.rating-breakdown{display:flex;flex-direction:column;gap:.5rem;}
.bd-row{display:flex;align-items:center;gap:.7rem;font-size:.85rem;color:var(--text-muted);}
.bd-row>span:first-child{width:34px;}
.bd-track{flex:1;height:8px;background:var(--border);border-radius:999px;overflow:hidden;}
.bd-fill{height:100%;background:linear-gradient(90deg,var(--yellow-400),var(--yellow-500));border-radius:999px;}
.bd-n{width:20px;text-align:right;}
.reviews-wall{column-count:3;column-gap:1.4rem;}
@media(max-width:900px){.reviews-wall{column-count:2;}}
@media(max-width:600px){.reviews-wall{column-count:1;}}
.review-card{break-inside:avoid;margin-bottom:1.4rem;padding:1.5rem;border-radius:18px;background:var(--bg-card,rgba(255,255,255,.7));border:1px solid var(--border);box-shadow:var(--shadow-sm);}
.review-head{display:flex;align-items:center;gap:.8rem;margin-bottom:.7rem;}
.review-av{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;font-weight:700;color:#fff;background:linear-gradient(135deg,var(--violet-600),var(--accent-bright));font-size:.9rem;}
.review-name{font-weight:700;font-size:.97rem;}
.review-comp{font-size:.82rem;color:var(--text-dim);}
.review-card blockquote{color:var(--text-muted);font-size:.96rem;line-height:1.6;margin:.6rem 0;}
.review-svc{font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--violet-600);}
.op-form-wrap{max-width:640px;margin:3rem auto 0;padding:2.2rem;border-radius:22px;background:var(--bg-soft);border:1px solid var(--border);}
.op-form-wrap h3{font-size:1.5rem;margin-bottom:1.3rem;text-align:center;}

/* ===== Menu visible con todas las paginas (multipagina) ===== */
.nav-links{display:flex !important;position:static !important;inset:auto !important;flex-direction:row !important;transform:none !important;background:transparent !important;box-shadow:none !important;border:none !important;padding:0 !important;margin:0;gap:1.4rem;align-items:center;list-style:none;}
.nav-links a{font-size:.92rem !important;white-space:nowrap;color:var(--text-muted);}
.nav-links a.is-active{color:var(--violet-600);}
.menu-toggle{display:none !important;}
@media(max-width:860px){
 .nav{flex-wrap:wrap;gap:.5rem .9rem;}
 .nav-links{order:3;width:100%;gap:1rem;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:4px !important;}
 .nav-links::-webkit-scrollbar{display:none;}
 .nav-links a{font-size:.92rem !important;}
 .nav-cta{display:none;}
}

.hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;opacity:0;overflow:hidden;}

.rating-out{font-size:1.05rem;color:var(--text-muted);margin-top:-.2rem;font-weight:600;}
