/* Clic2Leads Theme — main.css — Electric Dark Edition */


    /* ═══════════════════════════════════════
       PALETTE — extracted from logo #5000d0
    ═══════════════════════════════════════ */
    :root {
      --e:      #5000d0;   /* electric indigo — logo exact */
      --e2:     #3d00a8;   /* deep indigo — dark hover    */
      --e3:     #7a1fff;   /* bright violet — glow/accent */
      --e4:     #a64dff;   /* light neon — text accents   */
      --neon:   #b366ff;   /* neon highlight              */

      --bg:     #06000f;   /* near-black with indigo tint */
      --bg2:    #0c0020;   /* card backgrounds            */
      --bg3:    #110030;   /* lighter dark panels         */
      --surface:#160038;   /* elevated surfaces           */

      --text:   #f0eaff;   /* off-white with violet tint  */
      --sub:    #9480b8;   /* muted violet-grey           */
      --dim:    #5a4a7a;   /* very dim text               */

      --line:   rgba(80,0,208,.35);  /* border lines   */
      --lineh:  rgba(122,31,255,.6); /* hover borders  */
      --glow:   rgba(80,0,208,.4);
      --glow2:  rgba(122,31,255,.35);

      --fh: 'Figtree', sans-serif;
      --fb: 'Plus Jakarta Sans', sans-serif;
      --ease: cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
    html { scroll-behavior:smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--fb);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }
    a { text-decoration:none; color:inherit; }
    ul { list-style:none; }
    .container { width:100%; max-width:1380px; margin:0 auto; padding:0 56px; }
    @media(max-width:768px){ .container{ padding:0 20px; } }

    /* ─────────────────────────────────
       NAVBAR
    ───────────────────────────────── */
    nav {
      position: fixed; top:0; left:0; right:0; z-index:200;
      padding: 20px 0;
      transition: all .3s var(--ease);
    }
    nav.scrolled {
      background: rgba(6,0,15,.92);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--line);
      padding: 13px 0;
      box-shadow: 0 4px 40px rgba(80,0,208,.15);
    }
    .nav-inner { display:flex; align-items:center; justify-content:space-between; gap:32px; }
    .nav-links { display:flex; align-items:center; gap:4px; }
    .nav-links a {
      font-size: 13px; font-weight: 600; color: var(--sub);
      padding: 8px 16px; border-radius: 6px;
      transition: all .18s var(--ease); letter-spacing:.02em;
    }
    .nav-links a:hover { color: var(--text); background: rgba(80,0,208,.15); }
    .nav-cta {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-btn {
      background: var(--e);
      color: #fff; padding: 10px 22px;
      border-radius: 6px;
      font-family: var(--fh); font-size: 13px; font-weight: 800;
      letter-spacing: .04em; text-transform: uppercase;
      border: 1px solid rgba(122,31,255,.4);
      box-shadow: 0 0 20px rgba(80,0,208,.4), inset 0 1px 0 rgba(255,255,255,.1);
      transition: all .18s var(--ease);
      white-space: nowrap;
      position: relative; overflow: hidden;
    }
    .nav-btn::before {
      content: '';
      position: absolute; top:0; left:-100%; width:100%; height:100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
      transition: left .4s var(--ease);
    }
    .nav-btn:hover { transform:translateY(-1px); box-shadow: 0 0 32px rgba(122,31,255,.6), inset 0 1px 0 rgba(255,255,255,.15); }
    .nav-btn:hover::before { left:100%; }
    .nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
    .nav-hamburger span { display:block; width:22px; height:2px; background:var(--sub); border-radius:1px; transition:all .25s ease; }
    .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); background:var(--e4); }
    .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity:0; }
    .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); background:var(--e4); }
    @media(max-width:960px){ .nav-links{ display:none; } .nav-hamburger{ display:flex; } }

    /* Mobile menu */
    .nav-mobile-menu { display:none; position:fixed; inset:0; background:rgba(0,0,0,.7); z-index:199; backdrop-filter:blur(8px); }
    .nav-mobile-menu.open { display:flex; align-items:flex-start; }
    .nav-mobile-inner {
      background: var(--bg2); width:280px; min-height:100vh;
      padding: 84px 24px 40px;
      display:flex; flex-direction:column; gap:6px;
      border-right: 1px solid var(--line);
      box-shadow: 4px 0 40px rgba(80,0,208,.3);
    }
    .nav-mobile-links { display:flex; flex-direction:column; gap:2px; }
    .nav-mobile-links a {
      display:block; padding:12px 16px; border-radius:8px;
      font-family:var(--fh); font-size:15px; font-weight:700; color:var(--sub);
      transition:all .2s ease; letter-spacing:.02em;
    }
    .nav-mobile-links a:hover { background:rgba(80,0,208,.2); color:var(--text); }
    .mobile-cta { margin-top:20px; }

    /* ─────────────────────────────────
       HERO — FULL DARK, ELECTRIC
    ───────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 140px 0 100px;
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    /* Electric grid — sharp and tight */
    .hero-grid {
      position: absolute; inset:0; pointer-events:none; z-index:0;
      background-image:
        linear-gradient(rgba(80,0,208,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80,0,208,.12) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    /* Vignette over grid */
    .hero-vignette {
      position: absolute; inset:0; pointer-events:none; z-index:1;
      background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, var(--bg) 100%);
    }

    /* Deep electric glow orbs */
    .orb1 {
      position: absolute; width:900px; height:900px; border-radius:50%;
      background: radial-gradient(circle, rgba(80,0,208,.18) 0%, rgba(122,31,255,.06) 40%, transparent 70%);
      top:-350px; right:-250px; pointer-events:none; z-index:1;
      animation: orb 10s ease-in-out infinite;
    }
    .orb2 {
      position: absolute; width:600px; height:600px; border-radius:50%;
      background: radial-gradient(circle, rgba(122,31,255,.12) 0%, transparent 70%);
      bottom:-200px; left:-150px; pointer-events:none; z-index:1;
      animation: orb 14s ease-in-out infinite .5s;
    }
    @keyframes orb { 0%,100%{ transform:scale(1) translate(0,0); } 50%{ transform:scale(1.08) translate(-20px,-30px); } }

    /* Scanline effect */
    .hero-scan {
      position: absolute; inset:0; pointer-events:none; z-index:2;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(80,0,208,.015) 2px,
        rgba(80,0,208,.015) 4px
      );
    }

    .hero-content {
      position: relative; z-index:3;
      text-align: center;
      max-width: 980px; margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex; align-items:center; gap:10px;
      border: 1px solid var(--line);
      background: rgba(80,0,208,.12);
      color: var(--e4);
      font-family: var(--fh); font-size:11px; font-weight:800;
      letter-spacing:.2em; text-transform:uppercase;
      padding: 8px 20px; border-radius:3px;
      margin-bottom: 40px;
    }
    .badge-pulse {
      width:6px; height:6px; border-radius:50%;
      background: var(--e3);
      box-shadow: 0 0 10px var(--e3), 0 0 20px var(--e3);
      animation: bpulse 1.5s ease-in-out infinite;
    }
    @keyframes bpulse { 0%,100%{ opacity:1; box-shadow:0 0 10px var(--e3),0 0 20px var(--e3); } 50%{ opacity:.4; box-shadow:0 0 4px var(--e3); } }

    .hero-title {
      font-family: var(--fh);
      font-size: clamp(54px, 8vw, 104px);
      font-weight: 900;
      line-height: .98;
      color: var(--text);
      margin-bottom: 32px;
      letter-spacing: -.04em;
    }
    /* Electric gradient on accent */
    .hero-title .accent {
      background: linear-gradient(135deg, var(--e4) 0%, var(--e3) 40%, #cc44ff 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      filter: drop-shadow(0 0 40px rgba(122,31,255,.4));
    }
    .hero-title .line3 {
      display:block;
      font-size: clamp(28px,4vw,52px);
      color: var(--dim); font-weight:600;
      margin-top:8px; letter-spacing:-.02em;
    }

    .hero-sub {
      font-size: clamp(16px,1.8vw,19px);
      color: var(--sub); line-height:1.75;
      max-width:620px; margin:0 auto 56px;
    }

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

    /* Buttons */
    .btn {
      display:inline-flex; align-items:center; gap:8px;
      font-family:var(--fh); font-weight:800;
      border-radius:6px; cursor:pointer; border:none;
      transition:all .18s var(--ease); white-space:nowrap;
      text-decoration:none; position:relative; overflow:hidden;
    }
    .btn-lg { padding:18px 40px; font-size:15px; letter-spacing:.04em; text-transform:uppercase; }
    .btn-md { padding:14px 28px; font-size:14px; letter-spacing:.04em; text-transform:uppercase; }

    .btn-primary {
      background: var(--e);
      color: #fff;
      border: 1px solid rgba(122,31,255,.5);
      box-shadow: 0 0 24px rgba(80,0,208,.5), 0 4px 16px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.12);
    }
    .btn-primary::after {
      content:'';
      position:absolute; top:0; left:-100%; width:100%; height:100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
      transition: left .5s var(--ease);
    }
    .btn-primary:hover { transform:translateY(-3px); box-shadow:0 0 48px rgba(122,31,255,.7), 0 8px 24px rgba(0,0,0,.5); }
    .btn-primary:hover::after { left:100%; }

    .btn-ghost {
      background: transparent;
      color: var(--e4);
      border: 1px solid var(--line);
    }
    .btn-ghost:hover {
      background: rgba(80,0,208,.15);
      border-color: var(--lineh);
      transform: translateY(-2px);
      color: var(--text);
    }

    /* Stats — terminal style */
    .hero-stats {
      display: flex; gap:0;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: rgba(12,0,32,.8);
      backdrop-filter: blur(12px);
      max-width: 680px; margin: 0 auto;
      box-shadow: 0 0 40px rgba(80,0,208,.15), inset 0 1px 0 rgba(80,0,208,.2);
    }
    .hstat {
      flex:1; padding:22px 20px; text-align:center;
      border-right: 1px solid var(--line);
      position:relative;
    }
    .hstat:last-child { border-right:none; }
    .hstat-num {
      font-family:var(--fh); font-size:30px; font-weight:900;
      color: var(--e4);
      text-shadow: 0 0 20px rgba(122,31,255,.6);
      line-height:1; margin-bottom:5px;
    }
    .hstat-label { font-size:11px; color:var(--dim); font-weight:600; letter-spacing:.08em; text-transform:uppercase; }

    /* ─────────────────────────────────
       TICKER
    ───────────────────────────────── */
    .ticker-wrap {
      background: var(--e);
      border-top: 1px solid rgba(122,31,255,.4);
      border-bottom: 1px solid rgba(122,31,255,.4);
      overflow:hidden; position:relative;
      box-shadow: 0 0 40px rgba(80,0,208,.3);
    }
    .ticker-wrap::before, .ticker-wrap::after {
      content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
    }
    .ticker-wrap::before { left:0; background:linear-gradient(90deg, var(--e), transparent); }
    .ticker-wrap::after  { right:0; background:linear-gradient(-90deg, var(--e), transparent); }
    .ticker-track {
      display:flex; animation:ticker 26s linear infinite;
      width:max-content; padding:16px 0;
    }
    @keyframes ticker { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
    .ticker-item {
      display:flex; align-items:center; gap:10px;
      padding:0 28px;
      font-family:var(--fh); font-size:11px; font-weight:800;
      color:rgba(255,255,255,.7); letter-spacing:.16em;
      text-transform:uppercase; white-space:nowrap;
    }
    .ticker-dot { width:4px; height:4px; border-radius:50%; background:#fff; opacity:.5; flex-shrink:0; }

    /* ─────────────────────────────────
       SECTION SHARED
    ───────────────────────────────── */
    #nichos, #testi { padding:110px 0; }
    #como { padding:110px 0; background: var(--bg2); }
    #cta  { padding:100px 0 120px; }

    .sh { text-align:center; margin-bottom:72px; }
    .sh-tag {
      display:inline-block;
      font-family:var(--fh); font-size:10px; font-weight:800;
      letter-spacing:.22em; text-transform:uppercase;
      color:var(--e4); background:rgba(80,0,208,.15);
      border:1px solid var(--line);
      padding:7px 16px; border-radius:3px; margin-bottom:20px;
    }
    .sh-title {
      font-family:var(--fh); font-size:clamp(32px,4vw,52px);
      font-weight:900; color:var(--text); line-height:1.06;
      letter-spacing:-.03em; margin-bottom:16px;
    }
    .sh-sub { font-size:17px; color:var(--sub); line-height:1.7; max-width:540px; margin:0 auto; }

    /* ─────────────────────────────────
       NICHOS
    ───────────────────────────────── */
    .nichos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
    @media(max-width:1100px){ .nichos-grid{ grid-template-columns:repeat(2,1fr); } }
    @media(max-width:600px){ .nichos-grid{ grid-template-columns:1fr; } }

    .nc {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px 24px;
      display:flex; flex-direction:column; gap:14px;
      transition: all .2s var(--ease);
      position:relative; overflow:hidden;
    }
    /* Left electric border on hover */
    .nc::before {
      content:'';
      position:absolute; left:0; top:0; bottom:0; width:3px;
      background: linear-gradient(180deg, var(--e3), var(--e));
      transform: scaleY(0); transform-origin:top;
      transition: transform .3s var(--ease);
    }
    .nc:hover { border-color:var(--lineh); transform:translateY(-4px); box-shadow:0 8px 40px rgba(80,0,208,.25), 0 0 0 1px rgba(122,31,255,.15); }
    .nc:hover::before { transform:scaleY(1); }
    .nc.linked { cursor:pointer; }

    .nc-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
    .nc-icon {
      width:50px; height:50px; border-radius:8px;
      background: rgba(80,0,208,.2);
      border: 1px solid var(--line);
      display:flex; align-items:center; justify-content:center; font-size:22px;
    }
    .nc-badge { font-family:var(--fh); font-size:9px; font-weight:800; padding:4px 10px; border-radius:3px; white-space:nowrap; letter-spacing:.1em; text-transform:uppercase; }
    .badge-active { background:rgba(0,200,100,.1); color:#00d474; border:1px solid rgba(0,200,100,.2); }
    .badge-new    { background:rgba(80,0,208,.2); color:var(--e4); border:1px solid var(--line); }
    .nc-name { font-family:var(--fh); font-size:18px; font-weight:900; color:var(--text); letter-spacing:-.01em; }
    .nc-desc { font-size:14px; color:var(--sub); line-height:1.65; flex:1; }
    .nc-metric {
      display:flex; align-items:center; gap:12px;
      padding:10px 14px;
      background: rgba(80,0,208,.12);
      border-radius:6px; border:1px solid rgba(80,0,208,.2);
    }
    .nc-metric-num { font-family:var(--fh); font-size:22px; font-weight:900; color:var(--e4); text-shadow:0 0 16px rgba(122,31,255,.5); }
    .nc-metric-label { font-size:11px; color:var(--dim); letter-spacing:.04em; }
    .nc-link { display:inline-flex; align-items:center; gap:6px; font-family:var(--fh); font-size:12px; font-weight:800; color:var(--e4); letter-spacing:.04em; text-transform:uppercase; transition:gap .2s; }
    .nc.linked:hover .nc-link { gap:10px; }

    /* ─────────────────────────────────
       CÓMO FUNCIONA
    ───────────────────────────────── */
    .como-wrap { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
    @media(max-width:960px){ .como-wrap{ grid-template-columns:1fr; gap:56px; } }

    .cs { display:flex; gap:18px; padding-bottom:32px; position:relative; }
    .cs::before {
      content:''; position:absolute; left:18px; top:42px; bottom:0; width:1px;
      background: linear-gradient(180deg, var(--e) 0%, rgba(80,0,208,.08) 100%);
    }
    .cs:last-child::before { display:none; }
    .cs:last-child { padding-bottom:0; }
    .cs-dot {
      width:38px; height:38px; border-radius:6px;
      background: var(--e);
      border: 1px solid rgba(122,31,255,.5);
      display:flex; align-items:center; justify-content:center;
      font-family:var(--fh); font-weight:900; font-size:14px;
      color:#fff; flex-shrink:0; position:relative; z-index:1;
      box-shadow: 0 0 20px rgba(80,0,208,.5);
    }
    .cs-title { font-family:var(--fh); font-size:16px; font-weight:800; color:var(--text); margin-bottom:5px; text-align:left; }
    .cs-desc  { font-size:14px; color:var(--sub); line-height:1.65; text-align:left; }

    /* Dashboard — terminal black */
    .dash {
      background: #000;
      border: 1px solid var(--line);
      border-radius: 8px; padding:24px;
      box-shadow: 0 0 60px rgba(80,0,208,.25), 0 20px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(80,0,208,.2);
      position:relative; overflow:hidden;
    }
    .dash::before {
      content:'';
      position:absolute; top:-1px; left:10%; right:10%; height:1px;
      background: linear-gradient(90deg, transparent, var(--e3), transparent);
    }
    /* Scanlines on dashboard */
    .dash::after {
      content:'';
      position:absolute; inset:0; pointer-events:none;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(80,0,208,.04) 2px, rgba(80,0,208,.04) 4px);
    }
    .dash-topbar { display:flex; align-items:center; gap:8px; margin-bottom:20px; position:relative; z-index:1; }
    .dash-dot { width:10px; height:10px; border-radius:50%; }
    .dash-title-txt { font-family:var(--fh); font-size:12px; font-weight:700; color:rgba(80,0,208,.9); margin-left:6px; letter-spacing:.1em; text-transform:uppercase; }
    .dash-live { margin-left:auto; display:flex; align-items:center; gap:6px; font-family:var(--fh); font-size:10px; font-weight:800; color:#00ff7a; letter-spacing:.1em; text-transform:uppercase; }
    .dash-live-dot { width:6px; height:6px; border-radius:50%; background:#00ff7a; box-shadow:0 0 8px #00ff7a; animation:bpulse 1.5s infinite; }
    .dash-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; position:relative; z-index:1; }
    .kpi { background:rgba(80,0,208,.12); border-radius:6px; padding:14px 10px; text-align:center; border:1px solid rgba(80,0,208,.2); }
    .kpi-n { font-family:var(--fh); font-size:22px; font-weight:900; color:var(--e4); text-shadow:0 0 16px rgba(122,31,255,.6); }
    .kpi-l { font-size:10px; color:var(--dim); margin-top:2px; letter-spacing:.06em; text-transform:uppercase; }
    .dash-leads-list { display:flex; flex-direction:column; gap:6px; position:relative; z-index:1; }
    .dl {
      display:flex; align-items:center; gap:12px;
      padding:10px 14px; border-radius:6px;
      border:1px solid rgba(80,0,208,.15); background:rgba(80,0,208,.06);
      transition:all .15s var(--ease);
    }
    .dl:hover { background:rgba(80,0,208,.18); border-color:rgba(80,0,208,.4); }
    .dl-av { width:30px; height:30px; border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
    .dl-name { font-family:var(--fh); font-size:12px; font-weight:700; color:var(--text); }
    .dl-type { font-size:10px; color:var(--dim); margin-top:1px; }
    .dl-status { margin-left:auto; font-family:var(--fh); font-size:9px; font-weight:800; padding:3px 8px; border-radius:3px; white-space:nowrap; letter-spacing:.08em; text-transform:uppercase; }
    .s-new { background:rgba(80,0,208,.2); color:var(--e4); border:1px solid rgba(80,0,208,.3); }
    .s-con { background:rgba(0,80,200,.2); color:#66aaff; border:1px solid rgba(0,80,200,.3); }
    .s-ok  { background:rgba(0,200,100,.12); color:#00d474; border:1px solid rgba(0,200,100,.2); }

    /* ─────────────────────────────────
       TESTIMONIOS
    ───────────────────────────────── */
    .testi-wrap { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
    @media(max-width:1100px){ .testi-wrap{ grid-template-columns:repeat(2,1fr); } }
    @media(max-width:600px){ .testi-wrap{ grid-template-columns:1fr; } }

    .tc {
      background:var(--bg2); border:1px solid var(--line);
      border-radius:8px; padding:28px;
      display:flex; flex-direction:column; gap:14px;
      transition:all .2s var(--ease);
    }
    .tc:first-child {
      grid-column:span 2;
      background: linear-gradient(135deg, #0a0020 0%, #12003a 100%);
      border-color: rgba(122,31,255,.35);
      box-shadow: inset 0 1px 0 rgba(122,31,255,.2);
    }
    @media(max-width:1100px){ .tc:first-child{ grid-column:span 1; } }
    .tc:hover { border-color:var(--lineh); transform:translateY(-3px); box-shadow:0 8px 32px rgba(80,0,208,.2); }
    .tc-stars { font-size:12px; letter-spacing:2px; color:var(--e4); }
    .tc-quote { font-size:14px; color:var(--sub); line-height:1.8; flex:1; }
    .tc:first-child .tc-quote { font-size:17px; color:rgba(240,234,255,.8); font-weight:400; line-height:1.75; }
    .tc-quotemark { font-family:var(--fh); font-size:56px; line-height:.8; margin-bottom:-4px; color:var(--e); opacity:.6; }
    .tc-foot { display:flex; align-items:center; gap:12px; padding-top:14px; border-top:1px solid var(--line); }
    .tc:first-child .tc-foot { border-top-color:rgba(80,0,208,.2); }
    .tc-av { width:38px; height:38px; border-radius:6px; background:rgba(80,0,208,.2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
    .tc-name { font-family:var(--fh); font-size:13px; font-weight:800; color:var(--text); }
    .tc-role { font-size:11px; color:var(--dim); }
    .tc-kpi { margin-left:auto; text-align:right; }
    .tc-kpi-n { font-family:var(--fh); font-size:18px; font-weight:900; color:var(--e4); text-shadow:0 0 14px rgba(122,31,255,.5); }
    .tc:first-child .tc-kpi-n { font-size:22px; }
    .tc-kpi-l { font-size:10px; color:var(--dim); }

    /* ─────────────────────────────────
       CTA — DARK ELECTRIC
    ───────────────────────────────── */
    .cta-inner {
      background: linear-gradient(135deg, #050010 0%, #0e0030 50%, #060018 100%);
      border-radius: 8px; padding:88px 72px;
      display:grid; grid-template-columns:1fr auto;
      gap:64px; align-items:center;
      position:relative; overflow:hidden;
      border:1px solid rgba(80,0,208,.3);
      box-shadow: 0 0 80px rgba(80,0,208,.2), 0 40px 80px rgba(0,0,0,.6);
    }
    @media(max-width:960px){ .cta-inner{ grid-template-columns:1fr; padding:52px 36px; gap:36px; } }
    /* Electric grid inside CTA */
    .cta-inner::before {
      content:'';
      position:absolute; inset:0; pointer-events:none;
      background-image:
        linear-gradient(rgba(80,0,208,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80,0,208,.08) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    }
    .cta-inner::after {
      content:'';
      position:absolute; top:-1px; left:15%; right:15%; height:1px;
      background: linear-gradient(90deg, transparent, var(--e3), transparent);
      box-shadow: 0 0 20px var(--e3);
    }
    .cta-left { position:relative; z-index:1; }
    .cta-tag {
      display:inline-block;
      font-family:var(--fh); font-size:10px; font-weight:800;
      letter-spacing:.2em; text-transform:uppercase;
      color:var(--e4); background:rgba(80,0,208,.15);
      border:1px solid var(--line);
      padding:7px 16px; border-radius:3px; margin-bottom:20px;
    }
    .cta-title {
      font-family:var(--fh); font-weight:900;
      font-size:clamp(34px,3.5vw,56px);
      color:var(--text); line-height:1.06;
      letter-spacing:-.03em; margin-bottom:16px;
    }
    .cta-accent {
      background: linear-gradient(135deg, var(--neon) 0%, var(--e3) 60%, #ff44ff 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      filter: drop-shadow(0 0 30px rgba(122,31,255,.5));
    }
    .cta-sub { font-size:16px; color:var(--sub); line-height:1.7; text-align:left; }
    .cta-right { display:flex; flex-direction:column; gap:12px; min-width:270px; position:relative; z-index:1; }
    @media(max-width:960px){ .cta-right{ min-width:unset; } }

    .btn-cta-p {
      background: var(--e);
      color:#fff; padding:18px 28px; border-radius:6px;
      font-family:var(--fh); font-size:14px; font-weight:800;
      display:flex; align-items:center; justify-content:center; gap:8px;
      border:1px solid rgba(122,31,255,.4);
      box-shadow: 0 0 24px rgba(80,0,208,.5);
      transition:all .18s var(--ease); text-decoration:none;
      letter-spacing:.05em; text-transform:uppercase;
    }
    .btn-cta-p:hover { transform:translateY(-3px); box-shadow:0 0 48px rgba(122,31,255,.7); }
    .btn-cta-wa {
      background: rgba(0,200,100,.08);
      border:1px solid rgba(0,200,100,.2);
      color:#00d474;
      padding:14px 28px; border-radius:6px;
      font-family:var(--fh); font-size:13px; font-weight:700;
      display:flex; align-items:center; justify-content:center; gap:8px;
      transition:all .18s var(--ease); text-decoration:none;
      letter-spacing:.04em; text-transform:uppercase;
    }
    .btn-cta-wa:hover { background:rgba(0,200,100,.15); transform:translateY(-2px); }
    .cta-note { font-size:10px; color:var(--dim); text-align:center; letter-spacing:.06em; text-transform:uppercase; }

    /* ─────────────────────────────────
       FOOTER
    ───────────────────────────────── */
    footer { padding:48px 0; border-top:1px solid var(--line); background:var(--bg); }
    .footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
    .footer-copy { font-size:12px; color:var(--dim); letter-spacing:.04em; }
    .footer-links { display:flex; gap:24px; flex-wrap:wrap; }
    .footer-links a { font-size:12px; color:var(--dim); transition:color .15s; letter-spacing:.04em; }
    .footer-links a:hover { color:var(--e4); }

    /* WA FLOAT */
    .wa-float {
      position:fixed; bottom:28px; right:28px; z-index:999;
      width:56px; height:56px; background:#25D366; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 4px 20px rgba(37,211,102,.5);
      cursor:pointer; transition:all .18s var(--ease); text-decoration:none;
    }
    .wa-float:hover { transform:scale(1.12); box-shadow:0 8px 32px rgba(37,211,102,.65); }
    .wa-float svg { width:24px; height:24px; fill:white; }

    /* REVEAL */
    .reveal { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease),transform .6s var(--ease); }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .d1{transition-delay:.07s;} .d2{transition-delay:.14s;} .d3{transition-delay:.21s;}
    .d4{transition-delay:.28s;} .d5{transition-delay:.35s;} .d6{transition-delay:.42s;}
    .d7{transition-delay:.49s;} .d8{transition-delay:.56s;} .d9{transition-delay:.63s;}

    /* MOBILE */
    @media(max-width:768px) {
      #hero { padding:110px 0 72px; }
      .hero-title { font-size:clamp(44px,12vw,64px); }
      .hero-title .line3 { font-size:clamp(24px,6vw,36px); }
      .hero-sub { font-size:16px; margin-bottom:40px; }
      .hero-ctas { flex-direction:column; gap:10px; }
      .hero-ctas .btn { width:100%; justify-content:center; }
      .hero-stats { flex-wrap:wrap; max-width:100%; }
      .hstat { flex:1 1 calc(50% - 1px); padding:16px 10px; }
      .hstat:nth-child(2) { border-right:none; }
      .hstat:nth-child(3) { border-top:1px solid var(--line); }
      .hstat:nth-child(4) { border-top:1px solid var(--line); border-right:none; }
      .nichos-grid { grid-template-columns:1fr 1fr; gap:10px; }
      .nc { padding:18px 14px; }
      .nc-desc { display:none; }
      .testi-wrap { grid-template-columns:1fr; }
      .tc:first-child { grid-column:span 1; }
      .cta-inner { grid-template-columns:1fr; padding:40px 24px; gap:32px; border-radius:8px; }
    }
    @media(max-width:480px) {
      .nichos-grid { grid-template-columns:1fr; }
      .nc-desc { display:block; }
    }
  

/* ══════════════════════════════════════════
   CRITICAL CONTRAST FIXES — Force dark theme
   Applied globally to override any WP defaults
══════════════════════════════════════════ */

/* Force body dark */
html, body {
  background-color: #06000f !important;
  color: #f0eaff !important;
}

/* Force all sections dark */
#nichos, #testi, #como, #cta, #hero, section {
  background-color: transparent;
  color: #f0eaff;
}
#como { background-color: #0c0020 !important; }

/* ── CARDS: force dark backgrounds with readable text ── */
.nc {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.35) !important;
  color: #f0eaff !important;
}
.nc-name  { color: #f0eaff !important; }
.nc-desc  { color: #9480b8 !important; }
.nc-metric { background: rgba(80,0,208,.15) !important; border-color: rgba(80,0,208,.25) !important; }
.nc-metric-num { color: #c299ff !important; }
.nc-metric-label { color: #5a4a7a !important; }
.nc-link { color: #c299ff !important; }
.nc-badge { color: #c299ff !important; }

/* ── TESTIMONIOS: force dark ── */
.testi-wrap .tc,
.tc {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.35) !important;
  color: #f0eaff !important;
}
.tc.tc-featured,
.tc:first-child {
  background: linear-gradient(135deg, #0a0020 0%, #12003a 100%) !important;
  border-color: rgba(122,31,255,.35) !important;
}
.tc-quote { color: #9480b8 !important; }
.tc-name  { color: #f0eaff !important; }
.tc-role  { color: #5a4a7a !important; }
.tc-kpi-n { color: #c299ff !important; }
.tc-kpi-l { color: #5a4a7a !important; }
.tc-stars  { color: #c299ff !important; }
.tc-foot  { border-top-color: rgba(80,0,208,.2) !important; }
.tc-av    { background: rgba(80,0,208,.2) !important; border-color: rgba(80,0,208,.3) !important; }
.tc:first-child .tc-quote { color: rgba(240,234,255,.85) !important; }
.tc:first-child .tc-name  { color: #fff !important; }
.tc:first-child .tc-role  { color: rgba(255,255,255,.5) !important; }

/* ── COMO FUNCIONA: steps ── */
.cs-title { color: #f0eaff !important; }
.cs-desc  { color: #9480b8 !important; }

/* ── SH headings ── */
.sh-title, .section-title { color: #f0eaff !important; }
.sh-sub, .section-sub     { color: #9480b8 !important; }
.sh-tag, .section-tag     { color: #c299ff !important; background: rgba(80,0,208,.15) !important; border-color: rgba(80,0,208,.25) !important; }

/* ── CTA section ── */
.cta-inner {
  background: linear-gradient(135deg, #050010 0%, #0e0030 50%, #060018 100%) !important;
}
.cta-title { color: #f0eaff !important; }
.cta-sub   { color: #9480b8 !important; }
.cta-tag   { color: #c299ff !important; background: rgba(80,0,208,.15) !important; border-color: rgba(80,0,208,.25) !important; }

/* ── FOOTER ── */
footer {
  background-color: #06000f !important;
  border-top-color: rgba(80,0,208,.25) !important;
}
.footer-copy  { color: #5a4a7a !important; }
.footer-links a { color: #5a4a7a !important; }
.footer-links a:hover { color: #c299ff !important; }

/* ── HSTAT (hero stats) ── */
.hero-stats {
  background: rgba(12,0,32,.9) !important;
  border-color: rgba(80,0,208,.3) !important;
}
.hstat { border-right-color: rgba(80,0,208,.2) !important; }
.hstat-num   { color: #c299ff !important; }
.hstat-label { color: #5a4a7a !important; }

/* ══════════════════════════════════════════
   NAVBAR — Always dark, never transparent white
══════════════════════════════════════════ */
nav#nav {
  background: rgba(6,0,15,.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(80,0,208,.2) !important;
}
nav#nav.scrolled {
  background: rgba(6,0,15,.96) !important;
  border-bottom-color: rgba(80,0,208,.35) !important;
  box-shadow: 0 4px 40px rgba(80,0,208,.15) !important;
}
.nav-links a { color: #9480b8 !important; }
.nav-links a:hover { color: #f0eaff !important; background: rgba(80,0,208,.2) !important; }
.nav-links li a { color: #9480b8 !important; }
.nav-links li a:hover { color: #f0eaff !important; background: rgba(80,0,208,.2) !important; }

/* ── NAV BUTTON — more aggressive, electric, sharp ── */
.nav-btn {
  background: #5000d0 !important;
  color: #fff !important;
  border: 1px solid rgba(180,100,255,.5) !important;
  border-radius: 4px !important;
  font-family: 'Figtree', sans-serif !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  padding: 11px 22px !important;
  box-shadow:
    0 0 0 1px rgba(122,31,255,.3),
    0 0 20px rgba(80,0,208,.6),
    0 0 40px rgba(80,0,208,.25),
    inset 0 1px 0 rgba(255,255,255,.15) !important;
  transition: all .15s ease !important;
  position: relative !important;
}
.nav-btn:hover {
  background: #6600ff !important;
  box-shadow:
    0 0 0 1px rgba(180,100,255,.6),
    0 0 30px rgba(122,31,255,.8),
    0 0 60px rgba(102,0,255,.4),
    inset 0 1px 0 rgba(255,255,255,.2) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* ── Hamburger icon: white on dark ── */
.nav-hamburger span { background: #9480b8 !important; }

/* ══════════════════════════════════════════
   ABOGADOS PAGE — fix white card backgrounds
══════════════════════════════════════════ */
.problema-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.prob-title { color: #f0eaff !important; }
.prob-desc  { color: #9480b8 !important; }

.sistema-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.sc-title { color: #f0eaff !important; }
.sc-desc  { color: #9480b8 !important; }
.sc-list li { color: #9480b8 !important; }

.dif-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.dif-title { color: #f0eaff !important; }
.dif-desc  { color: #9480b8 !important; }
.dif-num   { color: #5a4a7a !important; }
.dif-big   { color: #c299ff !important; }

.step-card, .proceso-steps > div {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
  color: #9480b8 !important;
}
.step-title { color: #f0eaff !important; }
.step-desc  { color: #9480b8 !important; }
.step-num   { color: #5a4a7a !important; }

/* Metric cards abogados */
.metric-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.metric-number { color: #c299ff !important; }
.metric-label  { color: #f0eaff !important; }
.metric-desc   { color: #9480b8 !important; }

/* Velocity section */
.vel-wrapper {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.vel-title { color: #f0eaff !important; }
.vel-desc  { color: #9480b8 !important; }
.vel-dot   { background: #5000d0 !important; border-color: rgba(122,31,255,.5) !important; color: #fff !important; }
.vel-text strong { color: #f0eaff !important; }
.vel-text span   { color: #9480b8 !important; }
.days { color: #c299ff !important; }

/* Precio cards */
.precio-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.precio-card.featured {
  background: linear-gradient(135deg, #0e0030, #170050) !important;
  border-color: rgba(122,31,255,.5) !important;
}
.precio-label  { color: #9480b8 !important; }
.precio-amount { color: #c299ff !important; }
.precio-period { color: #5a4a7a !important; }
.precio-list li { color: #9480b8 !important; }

/* Form card */
.form-card, .cta-wrap .form-card {
  background: #0c0020 !important;
  border-color: rgba(80,0,208,.3) !important;
}
.form-title { color: #f0eaff !important; }
.form-sub   { color: #9480b8 !important; }
label { color: #c299ff !important; }
input, select, textarea {
  background: #06000f !important;
  border-color: rgba(80,0,208,.35) !important;
  color: #f0eaff !important;
}
input::placeholder, select::placeholder, textarea::placeholder { color: #5a4a7a !important; }
input:focus, select:focus, textarea:focus {
  border-color: #5000d0 !important;
  box-shadow: 0 0 0 3px rgba(80,0,208,.2) !important;
  outline: none !important;
}

/* CTA left abogados */
.cta-left .big-title { color: #f0eaff !important; }
.cta-left .big-title span { color: #c299ff !important; }
.cta-benefits li { color: #9480b8 !important; }
.check { color: #5000d0 !important; }
.cta-wrap > .cta-left > div[style] { background: #110030 !important; border-color: rgba(80,0,208,.3) !important; }
.form-wa { color: #00d474 !important; }

/* Tag pills */
.tag {
  background: rgba(80,0,208,.15) !important;
  color: #c299ff !important;
  border-color: rgba(80,0,208,.3) !important;
}

/* Sections abogados */
#problema, #sistema, #diferenciacion, #proceso, #velocidad, #precio, #cta-final, #metricas {
  background-color: transparent !important;
  color: #f0eaff !important;
}
#diferenciacion, #precio { background-color: #0a0018 !important; }

/* Hero abogados */
#hero.hero-abogados, .hero-abogados {
  background-color: #06000f !important;
  color: #f0eaff !important;
}
.hero-title-ab { color: #f0eaff !important; }
.hero-title-ab .accent { color: #c299ff !important; }
.hero-sub-ab { color: #9480b8 !important; }
.hero-proof { color: #9480b8 !important; }

/* Tags section headers abogados */
.section-header .tag { display: inline-flex !important; }


/* ══════════════════════════════════════════
   MOBILE FIXES — Nav compacto + botones + embudo
══════════════════════════════════════════ */

/* ── NAV MOBILE: logo + botón + hamburguesa en una línea compacta ── */
@media (max-width: 960px) {
  nav#nav {
    padding: 8px 0 !important;
  }
  nav#nav.scrolled {
    padding: 6px 0 !important;
  }
  .nav-inner {
    gap: 10px !important;
    padding: 0 16px !important;
  }
  /* Logo más pequeño en mobile */
  #c2l-logo-nav {
    height: 36px !important;
    max-width: 120px !important;
    width: auto !important;
  }
  /* Ocultar links de nav en mobile (ya estaba pero reforzamos) */
  .nav-links {
    display: none !important;
  }
  /* Botón nav más compacto y visible */
  .nav-btn {
    padding: 9px 14px !important;
    font-size: 11px !important;
    letter-spacing: .04em !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    max-width: 200px !important;
  }
  /* Hamburguesa siempre visible */
  .nav-hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    padding: 6px !important;
  }
  /* nav-cta: botón + hamburguesa juntos */
  .nav-cta {
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  /* Logo wrap no crece */
  .nav-logo-wrap {
    flex-shrink: 0 !important;
    flex: 0 0 auto !important;
  }
}

/* ── BOTONES MOBILE: más separación entre ellos ── */
@media (max-width: 768px) {
  /* Hero CTAs */
  .hero-ctas {
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 48px !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 18px 24px !important;
    font-size: 15px !important;
  }
  /* Botones abogados hero */
  .hero-ctas-ab,
  .hero-ab-ctas {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .hero-ctas-ab .btn,
  .hero-ab-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  /* CTA section botones */
  .cta-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .btn-cta-p,
  .btn-cta-wa {
    width: 100% !important;
    justify-content: center !important;
    padding: 18px 24px !important;
    font-size: 15px !important;
    margin: 0 !important;
  }
  /* Formulario abogados botones */
  .form-btn {
    padding: 18px 24px !important;
    font-size: 15px !important;
  }
  .form-wa {
    padding: 16px 24px !important;
    margin-top: 12px !important;
  }
  /* Precio cards botones */
  .precio-card .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    margin-top: 8px !important;
  }
  /* General: cualquier par de botones seguidos */
  .btn + .btn,
  a.btn + a.btn {
    margin-top: 0 !important;
  }
}

/* ── EMBUDO MOBILE ── */
@media (max-width: 720px) {
  .megafunnel-wrap {
    margin: 20px auto 0 !important;
    padding: 0 !important;
  }
  .megafunnel-vertical {
    display: block !important;
    width: 100% !important;
  }
  .megafunnel-vertical svg {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 8px 24px rgba(80,0,208,.2)) !important;
  }
  .megafunnel-svg-col {
    display: none !important;
  }
}

/* ── HERO PADDING — dejar espacio para nav compacto ── */
@media (max-width: 960px) {
  #hero {
    padding-top: 90px !important;
  }
}
@media (max-width: 768px) {
  #hero {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }
}
