:root {
    /* Brand — UXDivi */
    --brand: #014DFD;
    --brand-2: #0035C4;
    --brand-light: #4A7EFF;
    --cyan: #62E5FF;
    --cyan-2: #8CEEFF;

    /* Dark surfaces on brand palette */
    --bg: #040814;
    --bg-2: #070C1C;
    --surface: #0A0F1E;         /* official dark bg */
    --surface-2: #10172B;
    --surface-3: #18213E;
    --line: rgba(98,229,255,0.08);
    --line-2: rgba(255,255,255,0.10);
    --line-strong: rgba(98,229,255,0.25);

    /* Text */
    --ink: #F5F8FF;
    --ink-2: #C6D2E8;
    --ink-3: #8894B3;
    --ink-4: #566080;

    /* Glow tokens */
    --brand-soft: rgba(1,77,253,0.14);
    --brand-ring: rgba(1,77,253,0.4);

    --grad-primary: linear-gradient(135deg, #014DFD 0%, #4A7EFF 100%);
    --grad-text: linear-gradient(90deg, #4A7EFF 0%, #62E5FF 100%);
    --glow-brand: 0 10px 40px -8px rgba(1, 77, 253, 0.55);
    --glow-cyan:  0 10px 40px -8px rgba(98, 229, 255, 0.55);

    /* Type */
    --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
    --body: "Inter", ui-sans-serif, system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --maxw: 1280px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
  body {
    background:
      radial-gradient(1200px 600px at 50% -200px, rgba(1,77,253,0.28), transparent 60%),
      radial-gradient(900px 600px at 100% 10%, rgba(98,229,255,0.10), transparent 60%),
      var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0; }
  .eyebrow {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .mono { font-family: var(--mono); }
  .display { font-family: var(--display); letter-spacing: -0.02em; }

  h1, h2, h3 { font-family: var(--display); letter-spacing: -0.025em; margin: 0; color: var(--ink); }
  h1 { font-size: clamp(44px, 6vw, 76px); line-height: 1.02; font-weight: 600; }
  h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; font-weight: 600; }
  h3 { font-size: 22px; line-height: 1.2; font-weight: 600; }
  p { margin: 0; color: var(--ink-2); line-height: 1.6; }

  /* ========= NAV =========
     IMPORTANTE: usar selector header.nav o nav.nav (donde el TAG sea
     <header> o <nav>) para evitar colisión con el <ul class="et-menu nav">
     que Divi inyecta al menú nativo de WP. Antes era solo `.nav` y al
     matchear el <ul> de Divi, le aplicaba background dark + backdrop-filter
     que se apilaban con el del wrapper del Theme Builder produciendo un
     doble overlay azul/oscuro extraño detrás del menú. */
  header.nav,
  nav.nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(4,8,20,0.72);
    border-bottom: 1px solid var(--line);
  }
  /* Reset defensivo · si por error el <ul> de Divi llega con clase .nav,
     no queremos heredar background ni blur. */
  ul.et-menu.nav,
  .et_pb_menu ul.nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 0 !important;
    position: static !important;
    z-index: auto !important;
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; font-size: 22px; color: #fff; }
  .logo img { height: 28px; width: auto; }
  .nav-links { display: flex; gap: 28px; color: var(--ink-3); font-size: 14px; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }

  /* ========= BUTTONS ========= */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px; border-radius: 999px; font-weight: 500; font-size: 15px;
    border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #ffffff !important; /* Override de la variable "color de enlace" que Divi inyecta a nivel de body */
    box-shadow: var(--glow-brand, 0 10px 40px -8px rgba(1,77,253,0.55));
    border-color: transparent;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(1,77,253,0.7); color: #ffffff !important; }
  .btn-primary:visited, .btn-primary:focus, .btn-primary:active { color: #ffffff !important; }
  .btn-cyan {
    background: rgba(98,229,255,0.1);
    color: var(--cyan);
    border-color: rgba(98,229,255,0.35);
    font-weight: 600;
  }
  .btn-cyan:hover { background: rgba(98,229,255,0.18); border-color: var(--cyan); transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
  .btn-ghost:hover { background: rgba(98,229,255,0.06); border-color: var(--cyan); }
  .btn-sm { padding: 10px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 28px; font-size: 14px; }

  /* ========= HERO ========= */
  .hero { padding: 88px 0 80px; text-align: center; position: relative; }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(98,229,255,0.08);
    border: 1px solid rgba(98,229,255,0.3);
    color: var(--cyan);
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
  .hero h1 { max-width: 1020px; margin: 0 auto; }
  .hero h1 .glow {
    background: linear-gradient(135deg, #FFFFFF 0%, #62E5FF 60%, #8CEEFF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub { max-width: 720px; margin: 22px auto 0; font-size: 19px; color: var(--ink-2); }
  .hero-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
  .hero-trust {
    margin-top: 44px;
    display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center;
    color: var(--ink-3); font-size: 13px;
  }
  .hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
  .hero-trust b { color: var(--ink); font-weight: 600; }
  .stars { color: #FFC93B; letter-spacing: 1px; }

  /* Hero visual: real Divi 5 editor */
  .hero-canvas {
    margin-top: 72px;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(1,77,253,0.12), rgba(1,77,253,0.02));
    border: 1px solid rgba(98,229,255,0.15);
    padding: 24px;
    overflow: hidden;
  }
  .hero-canvas::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 250px at 50% 0%, rgba(1,77,253,0.35), transparent 60%);
    pointer-events: none;
  }
  .editor-shot {
    position: relative;
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(98,229,255,0.2);
    box-shadow: 0 40px 100px -30px rgba(1,77,253,0.5), 0 0 0 1px rgba(98,229,255,0.1);
  }
  .editor-shot img { display: block; width: 100%; height: auto; }
  .ai-chip-float {
    position: absolute; right: 40px; top: 48px; z-index: 3;
    padding: 10px 16px; border-radius: 999px;
    background: linear-gradient(180deg, rgba(98,229,255,0.2), rgba(98,229,255,0.06));
    border: 1px solid rgba(98,229,255,0.5);
    backdrop-filter: blur(8px);
    color: var(--cyan); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 30px -6px rgba(98,229,255,0.4);
  }
  .ai-chip-float .d { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

  /* ========= SECTION HEADERS ========= */
  section { padding: 100px 0; }
  .sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
  .sec-head .eyebrow { display: inline-block; margin-bottom: 16px; }
  .sec-head p { margin-top: 16px; color: var(--ink-3); font-size: 17px; }

  /* ========= PARA QUIÉN ========= */
  .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .who-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
  }
  .who-card::before {
    content: ""; position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(1,77,253,0.14), transparent 70%);
  }
  .who-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(1,77,253,0.2), rgba(98,229,255,0.08));
    border: 1px solid rgba(98,229,255,0.28);
    display: grid; place-items: center; margin-bottom: 22px;
    color: var(--cyan);
  }
  .who-card h3 { margin-bottom: 10px; }
  .who-card p { color: var(--ink-3); font-size: 15px; }

  /* ========= PILARES ========= */
  .pillars { display: grid; gap: 80px; }
  .pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .pillar.flip .pillar-copy { order: 2; }
  .pillar .badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 10px; border-radius: 999px;
    background: rgba(98,229,255,0.12); color: var(--cyan); border: 1px solid rgba(98,229,255,0.3);
    margin-bottom: 18px;
  }
  .pillar .eyebrow { display: block; margin-bottom: 12px; }
  .pillar h3 { font-size: 34px; line-height: 1.1; margin-bottom: 16px; }
  .pillar p { color: var(--ink-3); font-size: 16px; }
  .pillar p + p { margin-top: 12px; }

  /* Pillar visuals */
  .pvisual {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-2);
    background: var(--surface);
    position: relative; overflow: hidden;
  }
  .pvisual .label {
    position: absolute; bottom: 14px; left: 14px;
    font-family: var(--mono); font-size: 11px; color: var(--ink-4);
    background: rgba(0,0,0,0.5); padding: 4px 8px; border-radius: 4px; border: 1px solid var(--line-2);
    z-index: 3;
  }
  .pvisual .stripes {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 12px),
      linear-gradient(180deg, var(--surface-2), var(--surface));
  }

  /* Pillar 1 — IA flow with real editor screenshot */
  .pv-ai { padding: 22px; display: grid; gap: 14px; align-content: center; }
  .pv-ai .editor-mini {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(98,229,255,0.2);
    overflow: hidden;
    box-shadow: 0 20px 50px -20px rgba(1,77,253,0.5);
  }
  .pv-ai .editor-mini img { width: 100%; height: auto; display: block; }
  .pv-ai .editor-mini::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,15,30,0.4) 100%);
  }
  .flow-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; position: relative; z-index: 1; }
  .node {
    padding: 10px 6px; border-radius: 10px;
    background: linear-gradient(180deg, var(--surface-3), var(--surface-2));
    border: 1px solid var(--line-2);
    font-family: var(--mono); font-size: 10px; color: var(--ink-2);
    text-align: center;
    display: grid; gap: 4px; place-items: center;
  }
  .node .n-lbl { font-size: 9px; color: var(--ink-4); letter-spacing: 0.1em; text-transform: uppercase; }
  .node.brand { border-color: rgba(1,77,253,0.55); background: linear-gradient(180deg, rgba(1,77,253,0.25), rgba(1,77,253,0.06)); color: #DFE9FF; box-shadow: 0 0 0 3px rgba(1,77,253,0.1); }
  .node.cyan { border-color: rgba(98,229,255,0.55); background: linear-gradient(180deg, rgba(98,229,255,0.18), rgba(98,229,255,0.04)); color: #D4F6FF; }

  /* Pillar 2 — courses */
  .pv-courses { padding: 20px; display: grid; gap: 10px; align-content: start; }
  .course-row {
    display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center;
    padding: 12px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 12px;
  }
  .course-thumb { width: 64px; height: 44px; border-radius: 8px; overflow: hidden; position: relative; }
  .course-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .course-name { font-size: 13.5px; color: var(--ink); font-weight: 500; }
  .course-meta { font-family: var(--mono); font-size: 10px; color: var(--ink-4); margin-top: 2px; }
  .course-tag { font-family: var(--mono); font-size: 10px; padding: 3px 7px; border-radius: 4px; background: rgba(1,77,253,0.1); color: var(--cyan); border: 1px solid rgba(98,229,255,0.22); }
  .course-tag.new { background: rgba(98,229,255,0.12); color: var(--cyan); border-color: rgba(98,229,255,0.35); }

  /* Pillar 3 — hub (photo) */
  .pv-hub { padding: 0; overflow: hidden; position: relative; min-height: 380px; }
  .pv-hub img.hub-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .pv-hub::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,8,20,0) 50%, rgba(4,8,20,0.55) 100%); pointer-events: none; }

  /* Pillar 4 — chat */
  .pv-chat { padding: 22px; display: grid; gap: 10px; align-content: start; }
  .msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.45; position: relative; z-index: 1; }
  .msg.them { background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink-2); border-top-left-radius: 4px; }
  .msg.me { background: linear-gradient(180deg, #2B6BFF, #014DFD); color: #fff; margin-left: auto; border-top-right-radius: 4px; box-shadow: 0 6px 20px -4px rgba(1,77,253,0.45); }
  .msg-meta { font-family: var(--mono); font-size: 10px; color: var(--ink-4); display: flex; align-items: center; gap: 6px; position: relative; z-index: 1; }
  .msg-meta .av { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--cyan)); overflow: hidden; }
  .msg-meta .av img { width: 100%; height: 100%; object-fit: cover; }

  /* ========= PLANS ========= */
  .plans { position: relative; }
  .plans::before {
    content: ""; position: absolute; inset: -80px 0; background: radial-gradient(700px 400px at 30% 50%, rgba(1,77,253,0.14), transparent 60%); pointer-events: none;
  }
  .plan-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: stretch; position: relative; }
  .plan {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .plan .plan-name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
  .plan h3 { font-size: 26px; margin-bottom: 24px; line-height: 1.2; }
  .plan .price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
  .plan .price .num { font-family: var(--display); font-size: 72px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
  .plan .price .per { color: var(--ink-3); font-size: 16px; }
  .plan .subprice { color: var(--ink-3); font-size: 14px; margin-top: 10px; }
  .plan .features { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; }
  .plan .features li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
  .plan .features li .ck { color: var(--cyan); font-weight: 700; margin-top: 2px; }
  .plan .features li.no { color: var(--ink-4); }
  .plan .features li.no .ck { color: var(--ink-4); }
  .plan .microtext { margin-top: 14px; font-size: 12px; color: var(--ink-4); text-align: center; font-family: var(--mono); }

  /* Annual plan highlighted — UXDivi electric blue */
  .plan.featured {
    background:
      radial-gradient(600px 400px at 20% -10%, rgba(1,77,253,0.32), transparent 60%),
      radial-gradient(400px 300px at 100% 100%, rgba(98,229,255,0.14), transparent 60%),
      linear-gradient(180deg, rgba(20,30,70,0.55), rgba(10,15,30,0.7));
    border: 1px solid rgba(1,77,253,0.5);
    box-shadow:
      0 0 0 1px rgba(1,77,253,0.2),
      0 40px 100px -30px rgba(1,77,253,0.6),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .plan.featured::after {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
    background: linear-gradient(135deg, rgba(1,77,253,0.7), transparent 40%, transparent 60%, rgba(98,229,255,0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    padding: 1px; opacity: 0.9;
  }
  .plan-badge {
    position: absolute; top: -14px; left: 40px;
    display: inline-flex; gap: 8px; align-items: center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 999px;
    background: linear-gradient(180deg, #8CEEFF, #62E5FF);
    color: #001a2a;
    box-shadow: 0 10px 24px -8px rgba(98,229,255,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 700;
  }
  .plan .save-note {
    display: inline-block; margin-top: 14px; padding: 6px 12px; border-radius: 8px;
    background: rgba(98,229,255,0.1); border: 1px solid rgba(98,229,255,0.3);
    color: var(--cyan); font-family: var(--mono); font-size: 12px;
  }
  .plan .btn { margin-top: auto; width: 100%; justify-content: center; }

  /* ========= COMPARE TABLE ========= */
  .compare {
    border: 1px solid var(--line-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
  }
  .compare table { width: 100%; border-collapse: collapse; }
  .compare th, .compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: 14.5px; vertical-align: middle; }
  .compare th { background: var(--surface-2); color: var(--ink-3); font-weight: 500; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
  .compare th.plan-col-annual { background: linear-gradient(180deg, rgba(1,77,253,0.28), rgba(1,77,253,0.08)); color: #E8F0FF; }
  .compare td.col-annual { background: rgba(1,77,253,0.06); }
  .compare tr:last-child td { border-bottom: none; }
  .compare td .yes { color: var(--cyan); font-weight: 600; }
  .compare td .no { color: var(--ink-4); }
  .compare td:first-child { color: var(--ink); font-weight: 500; }
  .compare .feat-icon { display: inline-block; margin-right: 10px; opacity: 0.8; }
  .compare tr.totals td { font-family: var(--mono); font-weight: 600; color: var(--ink); background: rgba(255,255,255,0.02); }
  .compare tr.totals td.col-annual { background: rgba(1,77,253,0.14); color: #fff; }
  .compare tr.highlight td { background: rgba(98,229,255,0.04); }
  .compare tr.highlight td.col-annual { background: rgba(1,77,253,0.11); }
  .compare-foot { text-align: center; margin-top: 32px; }
  .compare-foot p { color: var(--ink-3); max-width: 720px; margin: 0 auto 22px; }

  /* ========= BONUS ========= */
  .bonus {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 56px;
    background:
      radial-gradient(600px 400px at 100% 0%, rgba(1,77,253,0.28), transparent 60%),
      radial-gradient(500px 400px at 0% 100%, rgba(98,229,255,0.18), transparent 60%),
      linear-gradient(180deg, rgba(15,25,55,0.75), rgba(10,15,30,0.85));
    border: 1px solid rgba(1,77,253,0.3);
    overflow: hidden;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  }
  .bonus .eyebrow { color: var(--cyan); }
  .bonus h2 { font-size: 42px; margin: 12px 0 10px; }
  .bonus .sub { font-size: 20px; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
  .bonus p { color: var(--ink-2); }
  .bonus .bullets { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
  .bonus .bullets li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 14.5px; }
  .bonus .bullets li span.ico {
    width: 24px; height: 24px; border-radius: 6px; background: rgba(98,229,255,0.15); border: 1px solid rgba(98,229,255,0.35); color: var(--cyan);
    display: grid; place-items: center; font-size: 12px;
  }
  .bonus-micro { font-family: var(--mono); font-size: 12px; color: var(--ink-4); margin-top: 18px; display: block; }

  .course-cover-wrap {
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(98,229,255,0.3);
    box-shadow: 0 30px 80px -20px rgba(1,77,253,0.6);
    position: relative;
    background: #0A0F1E;
  }
  .course-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .course-cover-wrap .cc-badge {
    position: absolute; top: 18px; left: 18px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(10,15,30,0.8); backdrop-filter: blur(8px);
    border: 1px solid rgba(98,229,255,0.4);
    color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  }

  /* ========= GUARANTEE ========= */
  .guarantee {
    display: grid; grid-template-columns: 80px 1fr auto; gap: 28px; align-items: center;
    padding: 36px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(98,229,255,0.06), rgba(98,229,255,0.015));
  }
  .shield {
    width: 80px; height: 80px; border-radius: 20px;
    background: linear-gradient(180deg, rgba(98,229,255,0.2), rgba(98,229,255,0.04));
    border: 1px solid rgba(98,229,255,0.35);
    display: grid; place-items: center; color: var(--cyan);
  }
  .guarantee h3 { font-size: 24px; margin-bottom: 6px; }
  .guarantee p { color: var(--ink-3); }
  .guarantee a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; font-size: 13px; }

  /* ========= JEFFERSON ========= */
  .about {
    display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center;
  }
  .about-photo {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    border: 1px solid var(--line-2);
    overflow: hidden;
    position: relative;
    background: var(--surface-2);
    box-shadow: 0 30px 70px -20px rgba(1,77,253,0.4);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
  .about-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4,8,20,0.5) 100%);
  }
  .about-photo .ph-tag {
    position: absolute; bottom: 16px; left: 16px; z-index: 2;
    padding: 6px 10px; border-radius: 8px;
    background: rgba(10,15,30,0.7); backdrop-filter: blur(8px);
    border: 1px solid rgba(98,229,255,0.25);
    font-family: var(--mono); font-size: 11px; color: var(--cyan);
    letter-spacing: 0.04em;
  }
  .about .eyebrow { display: block; margin-bottom: 12px; }
  .about h2 { font-size: 38px; margin-bottom: 20px; }
  .about p { color: var(--ink-2); font-size: 16px; }
  .about p + p { margin-top: 14px; }
  .about a.more { display: inline-block; margin-top: 22px; color: var(--cyan); font-size: 14px; }

  /* ========= TESTIMONIOS ========= */
  .t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .t-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative;
  }
  .t-quote { font-size: 15.5px; line-height: 1.6; color: var(--ink); font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; flex: 1; }
  .t-person { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; }
  .t-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; }
  .t-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .t-name { font-size: 14px; color: var(--ink); font-weight: 500; }
  .t-loc { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }

  .trustpilot-bar {
    margin-top: 36px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
    padding: 24px 32px;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
  }
  .tp-logo { display: flex; align-items: center; gap: 10px; }
  .tp-stars { display: flex; gap: 3px; }
  .tp-star { width: 22px; height: 22px; background: #00B67A; display: grid; place-items: center; color: #fff; border-radius: 2px; }
  .tp-meta { display: flex; gap: 18px; align-items: baseline; font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }
  .tp-meta b { color: var(--ink); font-weight: 600; }
  .tp-meta .rating { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--ink); }

  /* ========= FAQ ========= */
  .faq { max-width: 800px; margin: 0 auto; display: grid; gap: 8px; }
  .faq-item {
    border: 1px solid var(--line-2);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
  }
  .faq-item summary {
    cursor: pointer; list-style: none;
    padding: 22px 26px;
    display: flex; justify-content: space-between; gap: 20px; align-items: center;
    font-size: 16px; color: var(--ink); font-weight: 500;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .plus {
    width: 28px; height: 28px; border-radius: 50%; background: rgba(98,229,255,0.12); color: var(--cyan); display: grid; place-items: center; font-size: 16px;
    transition: transform .2s ease;
  }
  .faq-item[open] .plus { transform: rotate(45deg); background: rgba(98,229,255,0.25); }
  .faq-item .body { padding: 0 26px 24px; color: var(--ink-3); font-size: 15px; line-height: 1.65; }
  .faq-item .body p + p { margin-top: 10px; }
  .faq-item .body ol, .faq-item .body ul { padding-left: 20px; margin: 8px 0; }

  /* ========= FINAL CTA ========= */
  .final {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    background:
      radial-gradient(600px 400px at 50% 0%, rgba(1,77,253,0.45), transparent 60%),
      radial-gradient(500px 400px at 50% 100%, rgba(98,229,255,0.18), transparent 60%),
      linear-gradient(180deg, rgba(15,25,55,0.8), rgba(10,15,30,0.9));
    border: 1px solid rgba(1,77,253,0.35);
    overflow: hidden;
  }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px);
    pointer-events: none;
  }
  .final h2 { font-size: clamp(36px, 4.5vw, 58px); max-width: 900px; margin: 0 auto; position: relative; }
  .final h2 .grad { background: linear-gradient(135deg, #FFFFFF 0%, #62E5FF 70%, #8CEEFF 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .final .sub { margin-top: 18px; color: var(--ink-2); font-size: 18px; max-width: 640px; margin-left: auto; margin-right: auto; position: relative; }
  .final .ctas { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
  .final .micro { margin-top: 30px; color: var(--ink-3); font-family: var(--mono); font-size: 12px; position: relative; letter-spacing: 0.04em; }

  /* ========= FOOTER ========= */
  footer { border-top: 1px solid var(--line-2); padding: 48px 0 36px; margin-top: 80px; }
  .foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .foot-inner .foot-links { display: flex; gap: 24px; font-size: 13px; color: var(--ink-3); }
  .foot-copy { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }

  /* Icono ↗ en links externos (target=_blank) dentro de los widgets de menú
     inyectados por el módulo Sidebar de Divi en el footer.
     Mask + currentColor → hereda el color exacto del texto (var(--ink-3) por defecto). */
  .fwidget a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 1em; height: 1em;
    margin-left: 0.32em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17 17 7'/><path d='M9 7h8v8'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17 17 7'/><path d='M9 7h8v8'/></svg>");
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-size: contain; mask-size: contain;
    opacity: 0.65;
    transition: transform .15s ease, opacity .15s ease;
  }
  .fwidget a[target="_blank"]:hover::after {
    opacity: 1;
    transform: translate(2px, -2px);
  }

  .arr { transition: transform .15s ease; display: inline-block; }
  .btn:hover .arr { transform: translateX(3px); }

  /* ═══════════════════════════════════════════════════════════
     LUCIDE ICONS — utility universal para reemplazar emojis
     institucionales (audit-planes-2026-04-21).
     Usar: <svg class="lucide" viewBox="0 0 24 24">...</svg>
     Hereda color del padre con `currentColor`. Tamaño 1em por
     defecto se ajusta automáticamente al font-size del contexto.
     ═══════════════════════════════════════════════════════════ */
  .lucide {
    display: inline-block;
    width: 1em; height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.15em;
    flex-shrink: 0;
  }
  .lucide--cyan { color: var(--cyan); }
  .lucide--ink  { color: var(--ink); }
