    /* ─── LANDING LAYOUT ─────────────────────────────────────── */
    body {
      background: var(--ps-bg);
    }

    /* ─── HEADER ─────────────────────────────────────────────── */
    .landing-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--ps-white);
      border-bottom: 1px solid var(--ps-grey-100);
      padding: 0 var(--sp-8);
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-xs);
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      text-decoration: none;
    }

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

    .wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .wm-main {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.1;
    }

    .wm-p, .wm-o { color: var(--ps-ocre); }
    .wm-ersal, .wm-ne { color: var(--ps-green); }
    .wm-reg { font-size: 0.55em; font-weight: 600; margin-left: 1px; color: var(--ps-green); }

    .wm-business {
      font-size: 11px;
      font-weight: 600;
      color: var(--ps-green);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 2px;
      opacity: 0.7;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: var(--sp-8);
    }

    .header-nav a {
      font-size: var(--text-sm);
      font-weight: var(--fw-medium);
      color: var(--ps-grey-700);
      text-decoration: none;
      transition: color var(--t-fast);
    }

    .header-nav a:hover { color: var(--ps-green); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      padding: 9px var(--sp-5);
      border-radius: var(--r-md);
      border: 1px solid var(--ps-green);
      color: var(--ps-green);
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t-base);
    }

    .btn-outline:hover {
      background: var(--ps-green-05);
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      padding: 9px var(--sp-5);
      border-radius: var(--r-md);
      border: none;
      background: var(--ps-green);
      color: var(--ps-white);
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t-base);
    }

    .btn-cta:hover {
      background: var(--ps-green-light);
      box-shadow: 0 2px 10px rgba(40,86,51,0.25);
      transform: translateY(-1px);
    }

    .btn-cta-lg {
      font-size: var(--text-md);
      padding: var(--sp-4) var(--sp-10);
      border-radius: var(--r-lg);
    }

    /* CTA primario sobre fondo verde: blanco + reborde ocre + texto verde */
    .btn-primary-on-green {
      background-color: #FFFFFF;
      color: #285633;
      border: 2px solid #C9993A;
    }
    .btn-primary-on-green:hover {
      background-color: #F8F7F4;
      border-color: #C9993A;
      color: #285633;
      box-shadow: 0 2px 12px rgba(201,153,58,0.30);
      transform: translateY(-1px);
    }

    .btn-outline-lg {
      font-size: var(--text-md);
      padding: var(--sp-4) var(--sp-10);
      border-radius: var(--r-lg);
      border: 2px solid rgba(255,255,255,0.5);
      color: var(--ps-white);
      background: transparent;
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-weight: var(--fw-semibold);
      text-decoration: none;
      cursor: pointer;
      transition: all var(--t-base);
    }

    .btn-outline-lg:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      background:
        radial-gradient(120% 90% at 50% -10%, rgba(58,122,74,0.55) 0%, rgba(40,86,51,0) 55%),
        linear-gradient(165deg, #2c5e38 0%, var(--ps-green) 45%, #224a2c 100%);
      padding: var(--sp-16) var(--sp-8);
      text-align: center;
      overflow: hidden;
    }
    /* Capa de profundidad: halo ocre estratégico muy sutil */
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(60% 50% at 50% 120%, rgba(201,153,58,0.10) 0%, rgba(201,153,58,0) 70%);
      pointer-events: none;
    }
    .hero > * { position: relative; z-index: 1; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-xs);
      font-weight: var(--fw-semibold);
      color: var(--ps-ocre);
      background: rgba(201,153,58,0.15);
      border: 1px solid rgba(201,153,58,0.3);
      padding: 4px var(--sp-4);
      border-radius: var(--r-full);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--sp-6);
    }

    .hero h1 {
      font-size: var(--text-display);
      font-weight: var(--fw-heavy);
      color: var(--ps-white);
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 860px;
      margin: 0 auto var(--sp-6);
    }

    .hero p {
      font-size: var(--text-lg);
      color: rgba(255,255,255,0.75);
      max-width: 600px;
      margin: 0 auto var(--sp-10);
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-4);
      flex-wrap: wrap;
    }

    .hero-trust {
      margin-top: var(--sp-10);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-6);
      flex-wrap: wrap;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.6);
    }

    .hero-trust-item svg {
      width: 16px;
      height: 16px;
      color: var(--ps-ocre);
      flex-shrink: 0;
    }

    /* ─── PAIN POINTS ────────────────────────────────────────── */
    .section {
      padding: var(--sp-16) var(--sp-8);
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-label {
      font-size: var(--text-xs);
      font-weight: var(--fw-bold);
      color: var(--ps-ocre);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: var(--sp-3);
    }

    .section-heading {
      font-size: var(--text-3xl);
      font-weight: var(--fw-heavy);
      color: var(--ps-green);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: var(--sp-4);
    }

    .section-sub {
      font-size: var(--text-md);
      color: var(--ps-grey-700);
      max-width: 560px;
      line-height: 1.6;
      margin-bottom: var(--sp-10);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-6);
    }

    .pain-card {
      background: var(--ps-white);
      border: 1px solid var(--ps-grey-100);
      border-radius: var(--r-xl);
      padding: var(--sp-8) var(--sp-6);
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--t-base), transform var(--t-base);
    }

    .pain-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .pain-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--r-lg);
      background: var(--ps-green-08);
      color: var(--ps-green);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-5);
    }

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

    .pain-stat {
      font-size: var(--text-3xl);
      font-weight: var(--fw-heavy);
      color: #285633;
      letter-spacing: -0.02em;
      margin-bottom: var(--sp-2);
    }

    .pain-desc {
      font-size: var(--text-base);
      color: var(--ps-grey-700);
      line-height: 1.55;
    }

    /* ─── PRICING ────────────────────────────────────────────── */
    .pricing-section {
      background: var(--ps-bg);
      padding: var(--sp-16) var(--sp-8);
    }

    .pricing-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: var(--sp-10);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-5);
      align-items: stretch;
    }

    @media (max-width: 1100px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .pricing-card.free {
      border: 2px solid var(--ps-green);
      background: linear-gradient(180deg, var(--ps-green-08) 0%, var(--ps-white) 38%);
    }

    .pricing-badge.free-badge {
      background: var(--ps-ocre);
      color: var(--ps-white);
    }

    /* ─── PRICING CARDS ──────────────────────────────────────── */
    .pricing-card {
      background: var(--ps-white);
      border: 1px solid var(--ps-grey-100);
      border-radius: var(--r-xl);
      padding: var(--sp-8);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .pricing-card.featured {
      background: var(--ps-green);
      border-color: var(--ps-green);
      box-shadow: var(--shadow-lg);
      transform: scale(1.02);
    }

    .pricing-card.regulated {
      border-color: var(--ps-ocre);
      border-width: 2px;
    }

    .pricing-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: var(--fw-bold);
      padding: 3px 10px;
      border-radius: var(--r-full);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: var(--sp-5);
    }

    .pricing-badge.popular {
      background: var(--ps-green-08);
      color: var(--ps-green);
      border: 1px solid var(--ps-green-12);
    }

    .pricing-badge.recommended {
      background: rgba(255,255,255,0.2);
      color: var(--ps-white);
    }

    .pricing-badge.regulated-badge {
      background: rgba(201,153,58,0.12);
      color: var(--ps-ocre);
      border: 1px solid rgba(201,153,58,0.3);
    }

    .pricing-name {
      font-size: var(--text-xl);
      font-weight: var(--fw-bold);
      color: var(--ps-green);
      letter-spacing: -0.01em;
      margin-bottom: var(--sp-1);
    }

    .pricing-card.featured .pricing-name { color: var(--ps-white); }

    .pricing-subtitle {
      font-size: var(--text-sm);
      color: var(--ps-grey-300);
      margin-bottom: var(--sp-5);
    }

    .pricing-card.featured .pricing-subtitle { color: rgba(255,255,255,0.65); }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: var(--sp-1);
      margin-bottom: var(--sp-1);
    }

    .price-amount {
      font-size: 44px;
      font-weight: var(--fw-heavy);
      color: var(--ps-green);
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .pricing-card.featured .price-amount { color: var(--ps-white); }

    .price-period {
      font-size: var(--text-sm);
      font-weight: var(--fw-medium);
      color: var(--ps-grey-300);
    }

    .pricing-card.featured .price-period { color: rgba(255,255,255,0.65); }

    .price-annual {
      font-size: var(--text-xs);
      color: var(--ps-ocre);
      font-weight: var(--fw-semibold);
      margin-bottom: var(--sp-6);
    }

    .pricing-card.featured .price-annual { color: var(--ps-ocre); }

    .pricing-divider {
      height: 1px;
      background: var(--ps-grey-100);
      margin: var(--sp-5) 0;
    }

    .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
      flex: 1;
      margin-bottom: var(--sp-6);
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: var(--sp-3);
      font-size: var(--text-sm);
      color: var(--ps-grey-700);
      line-height: 1.45;
    }

    .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }

    .pricing-feature-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--ps-success-bg);
      color: var(--ps-success);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-card.featured .pricing-feature-icon {
      background: rgba(255,255,255,0.2);
      color: var(--ps-white);
    }

    .pricing-feature-icon svg { width: 11px; height: 11px; }

    .pricing-footer {
      padding-top: var(--sp-5);
      border-top: 1px solid var(--ps-grey-100);
    }

    .pricing-card.featured .pricing-footer { border-color: rgba(255,255,255,0.15); }

    .pricing-footer-note {
      font-size: var(--text-xs);
      color: var(--ps-grey-300);
      margin-bottom: var(--sp-4);
      line-height: 1.4;
    }

    .pricing-card.featured .pricing-footer-note { color: rgba(255,255,255,0.55); }

    .pricing-card.regulated .pricing-footer-note { color: var(--ps-ocre); font-weight: var(--fw-medium); }

    .btn-pricing-primary {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      padding: 11px var(--sp-5);
      border-radius: var(--r-md);
      border: none;
      background: var(--ps-green);
      color: var(--ps-white);
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t-base);
    }

    .btn-pricing-primary:hover {
      background: var(--ps-green-light);
      box-shadow: 0 2px 8px rgba(40,86,51,0.25);
      transform: translateY(-1px);
    }

    .pricing-card.featured .btn-pricing-primary {
      background: var(--ps-white);
      color: var(--ps-green);
    }

    .pricing-card.featured .btn-pricing-primary:hover {
      background: var(--ps-grey-100);
      box-shadow: none;
    }

    .btn-pricing-ocre {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      padding: 11px var(--sp-5);
      border-radius: var(--r-md);
      border: none;
      background: var(--ps-ocre);
      color: var(--ps-white);
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t-base);
    }

    .btn-pricing-ocre:hover {
      background: #b8882e;
      box-shadow: 0 2px 8px rgba(201,153,58,0.3);
      transform: translateY(-1px);
    }

    /* ─── CTA INTERMEDIO BAND ────────────────────────────────── */
    .diag-section {
      background: var(--ps-green);
      padding: var(--sp-16) var(--sp-8);
      text-align: center;
    }

    .diag-section h2 {
      font-size: var(--text-3xl);
      font-weight: var(--fw-heavy);
      color: var(--ps-white);
      letter-spacing: -0.02em;
      margin-bottom: var(--sp-4);
    }

    .diag-section p {
      font-size: var(--text-md);
      color: rgba(255,255,255,0.75);
      margin-bottom: var(--sp-8);
      line-height: 1.6;
    }

    .btn-ocre-lg {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-3);
      font-size: var(--text-md);
      font-weight: var(--fw-semibold);
      padding: var(--sp-4) var(--sp-10);
      border-radius: var(--r-lg);
      border: none;
      background: var(--ps-ocre);
      color: var(--ps-white);
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t-base);
    }

    .btn-ocre-lg:hover {
      background: #b8882e;
      box-shadow: 0 4px 16px rgba(201,153,58,0.35);
      transform: translateY(-2px);
    }

    .btn-ocre-lg svg { width: 20px; height: 20px; }

    /* ─── VERTICALES SECTORIALES ───────────────────────────────── */
    .sectors-section {
      padding: var(--sp-16) var(--sp-8);
      background: var(--ps-bg);
    }

    .sectors-section .section-label { margin-bottom: var(--sp-2); text-align: center; }
    .sectors-section .section-heading { text-align: center; margin-bottom: var(--sp-3); }
    .sectors-section .section-sub { text-align: center; margin: 0 auto var(--sp-12); }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-5);
      max-width: 1100px;
      margin: 0 auto;
    }

    .sector-card {
      position: relative;
      background: var(--ps-white);
      border: 1px solid #E8E6E0;
      border-radius: var(--r-xl);
      padding: var(--sp-6);
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
      box-shadow: 0 1px 2px rgba(40,86,51,0.04);
      overflow: hidden;
      transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
    }
    /* Acento ocre estratégico: barra superior que se revela en hover (simbolismo de diferenciación) */
    .sector-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ps-green) 0%, var(--ps-ocre) 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--t-slow);
    }

    .sector-card:hover {
      box-shadow: 0 12px 32px rgba(40,86,51,0.14), 0 4px 10px rgba(40,86,51,0.07);
      transform: translateY(-4px);
      border-color: rgba(40,86,51,0.30);
    }
    .sector-card:hover::before { transform: scaleX(1); }

    .sector-icon {
      width: 44px;
      height: 44px;
      background: rgba(40,86,51,0.08);
      border: 1px solid rgba(40,86,51,0.12);
      border-radius: var(--r-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #285633;
      flex-shrink: 0;
      transition: background var(--t-base), border-color var(--t-base);
    }
    .sector-card:hover .sector-icon {
      background: rgba(40,86,51,0.14);
      border-color: rgba(201,153,58,0.35);
    }

    .sector-icon svg { width: 22px; height: 22px; }

    .sector-title {
      font-size: var(--text-md);
      font-weight: var(--fw-bold);
      color: var(--ps-green);
      line-height: 1.2;
    }

    .sector-pain {
      font-size: var(--text-sm);
      color: var(--ps-grey-700);
      line-height: 1.5;
      flex: 1;
    }

    .sector-badges {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-1);
    }

    .sector-badge {
      font-size: 10px;
      font-weight: var(--fw-semibold);
      padding: 2px 8px;
      border-radius: var(--r-full);
      background: var(--ps-bg);
      color: var(--ps-grey-700);
      border: 1px solid #E0DED8;
      letter-spacing: 0.02em;
    }

    .sector-badge-urgent {
      background: rgba(201,153,58,0.12);
      color: #8B6A1A;
      border-color: rgba(201,153,58,0.35);
    }

    .sector-differentiator {
      font-size: 11px;
      font-weight: var(--fw-semibold);
      color: #285633;
      background: rgba(40,86,51,0.06);
      border-left: 3px solid var(--ps-ocre);
      border-radius: var(--r-sm);
      padding: 5px 10px;
      line-height: 1.4;
    }

    .sector-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--sp-3);
      border-top: 1px solid #F0EEE8;
      gap: var(--sp-2);
    }

    .sector-plan {
      font-size: var(--text-xs);
      font-weight: var(--fw-semibold);
      color: var(--ps-grey-700);
    }

    .sector-cta {
      font-size: 11px;
      font-weight: var(--fw-semibold);
      color: #285633;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color var(--t-fast);
      white-space: nowrap;
    }

    .sector-cta:hover { color: #C9993A; }
    .sector-cta svg { width: 13px; height: 13px; }

    /* ─── FORM DE ACCESO / REGISTRO PREVIO ──────────────────── */
    .access-section {
      padding: var(--sp-16) var(--sp-8);
      background: var(--ps-bg);
    }

    .access-inner {
      max-width: 680px;
      margin: 0 auto;
      background: var(--ps-white);
      border: 1px solid var(--ps-grey-100);
      border-radius: var(--r-2xl);
      padding: var(--sp-10) var(--sp-12);
      box-shadow: var(--shadow-md);
    }

    .access-inner .section-label { margin-bottom: var(--sp-2); }
    .access-inner .section-heading { font-size: var(--text-2xl); margin-bottom: var(--sp-2); }
    .access-inner .section-sub { margin-bottom: var(--sp-8); }

    .access-form { display: flex; flex-direction: column; gap: var(--sp-5); }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-4);
    }

    .form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

    .form-label {
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      color: var(--ps-green);
    }

    .form-input, .form-select {
      font-family: inherit;
      font-size: var(--text-sm);
      color: var(--ps-green);
      background: var(--ps-white);
      border: 1px solid var(--ps-grey-200);
      border-radius: var(--r-md);
      padding: 10px var(--sp-4);
      transition: border-color var(--t-fast), box-shadow var(--t-fast);
      outline: none;
    }

    .form-input:focus, .form-select:focus {
      border-color: var(--ps-green);
      box-shadow: 0 0 0 3px rgba(40,86,51,0.08);
    }

    .form-input::placeholder { color: var(--ps-grey-400); }

    /* ── Validación inline ───────────────────────────────── */
    .form-input.invalid, .form-select.invalid {
      border-color: #B3261E;
      box-shadow: 0 0 0 3px rgba(179,38,30,0.08);
    }
    .field-error {
      display: block;
      margin-top: 4px;
      font-size: var(--text-xs);
      color: #B3261E;
      line-height: 1.4;
    }

    /* ── Panel de éxito tras enviar form #acceso ─────────── */
    .success-panel {
      display: none;
      background: var(--ps-white);
      border: 1px solid var(--ps-grey-200);
      border-radius: var(--r-md);
      padding: var(--sp-8);
      text-align: center;
    }
    .success-panel.show { display: block; }
    .success-panel .success-icon {
      width: 56px; height: 56px;
      margin: 0 auto var(--sp-4);
      border-radius: 50%;
      background: var(--ps-green);
      color: var(--ps-white);
      display: flex; align-items: center; justify-content: center;
    }
    .success-panel .success-title {
      font-size: var(--text-xl);
      color: var(--ps-green);
      margin-bottom: var(--sp-2);
      font-weight: 600;
    }
    .success-panel .success-body {
      color: var(--ps-grey-700, #555);
      margin-bottom: var(--sp-3);
    }
    .success-panel .success-cta {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      margin: 0 0 var(--sp-4);
      padding: 12px 22px;
      background: var(--ps-green);
      color: var(--ps-white);
      font-weight: 600;
      border-radius: var(--r-md);
      text-decoration: none;
      transition: background 0.15s, transform 0.15s;
    }
    .success-panel .success-cta:hover {
      background: #1e4026;
      transform: translateY(-1px);
    }
    .success-panel .success-cta svg { width: 18px; height: 18px; }
    .success-panel .success-ocre {
      display: block;
      color: #C9993A;
      font-weight: 500;
      font-size: var(--text-sm, 0.875rem);
    }

    .check-group {
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }

    .check-label {
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      color: var(--ps-green);
      margin-bottom: var(--sp-1);
    }

    .check-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-2) var(--sp-4);
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      cursor: pointer;
    }

    .check-item input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--ps-green);
      cursor: pointer;
      flex-shrink: 0;
    }

    .check-item span {
      font-size: var(--text-sm);
      color: var(--ps-green);
      font-weight: var(--fw-medium);
    }

    .form-legal {
      font-size: 11px;
      color: var(--ps-grey-500);
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: var(--sp-3);
    }

    .form-legal input[type="checkbox"] {
      width: 14px;
      height: 14px;
      accent-color: var(--ps-green);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .form-legal a { color: var(--ps-green); text-decoration: underline; }

    .btn-submit {
      width: 100%;
      padding: var(--sp-4);
      background: var(--ps-green);
      color: var(--ps-white);
      font-family: inherit;
      font-size: var(--text-md);
      font-weight: var(--fw-semibold);
      border: none;
      border-radius: var(--r-lg);
      cursor: pointer;
      transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    }

    .btn-submit:hover {
      background: #1e4026;
      box-shadow: 0 4px 14px rgba(40,86,51,0.3);
      transform: translateY(-1px);
    }

    .btn-submit:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
      background: var(--ps-green);
    }

    .btn-submit.is-loading {
      cursor: progress;
      opacity: 0.9;
    }

    .btn-submit .btn-spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-right: 8px;
      vertical-align: -3px;
      border: 2px solid rgba(255,255,255,0.4);
      border-top-color: var(--ps-white);
      border-radius: 50%;
      animation: ps-btn-spin 0.7s linear infinite;
    }
    @keyframes ps-btn-spin { to { transform: rotate(360deg); } }
    @media (prefers-reduced-motion: reduce) {
      .btn-submit .btn-spinner { animation-duration: 1.4s; }
    }

    /* Banner de error general del formulario (reemplaza alert) */
    .form-error {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
      border: 1px solid #B3261E;
      background: #FDECEA;
      border-radius: var(--r-md);
      color: #8C1D18;
      font-size: var(--text-sm);
      line-height: 1.45;
    }
    .form-error[hidden] { display: none; }
    .form-error svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }

    .form-hint {
      margin: 0;
      font-size: var(--text-xs);
      color: var(--ps-grey-700);
      text-align: center;
      line-height: 1.45;
    }

    /* ─── FAQ ────────────────────────────────────────────────── */
    .faq-section {
      padding: var(--sp-16) var(--sp-8);
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--ps-grey-100);
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--ps-white);
      box-shadow: var(--shadow-sm);
    }

    .faq-item {
      border-bottom: 1px solid var(--ps-grey-100);
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: var(--sp-6);
      font-size: var(--text-base);
      font-weight: var(--fw-semibold);
      color: var(--ps-green);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-4);
      transition: background var(--t-fast);
      font-family: inherit;
    }

    .faq-question:hover { background: var(--ps-bg); }

    .faq-question.open { color: var(--ps-green); }

    .faq-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--ps-grey-100);
      color: var(--ps-grey-700);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--t-fast), transform var(--t-fast);
    }

    .faq-question.open .faq-icon {
      background: var(--ps-green-08);
      color: var(--ps-green);
      transform: rotate(45deg);
    }

    .faq-icon svg { width: 14px; height: 14px; }

    .faq-answer {
      display: none;
      padding: 0 var(--sp-6) var(--sp-6);
      font-size: var(--text-sm);
      color: var(--ps-grey-700);
      line-height: 1.7;
    }

    .faq-answer.open { display: block; }

    /* ─── ABOUT CREATOR ──────────────────────────────────────── */
    .about-section {
      background: var(--ps-white);
      padding: var(--sp-16) var(--sp-8);
    }

    .about-inner {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-12);
      align-items: center;
    }

    .about-content h2 {
      font-size: var(--text-2xl);
      font-weight: var(--fw-heavy);
      color: var(--ps-green);
      letter-spacing: -0.02em;
      margin-bottom: var(--sp-4);
    }

    .about-narrative {
      font-size: var(--text-sm);
      color: var(--ps-grey-700);
      line-height: 1.7;
      margin-bottom: var(--sp-5);
    }

    .about-credentials {
      display: flex;
      flex-direction: column;
      gap: var(--sp-2);
      margin-bottom: var(--sp-5);
    }

    .about-cred-item {
      display: flex;
      align-items: flex-start;
      gap: var(--sp-3);
      font-size: 13px;
      color: var(--ps-grey-700);
      line-height: 1.4;
    }

    .about-cred-item svg {
      width: 14px;
      height: 14px;
      color: var(--ps-green);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .about-cred-item strong {
      color: var(--ps-green);
      font-weight: var(--fw-semibold);
    }

    .about-link {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      color: var(--ps-green);
      text-decoration: none;
      transition: gap var(--t-fast);
    }

    .about-link:hover { gap: var(--sp-3); }
    .about-link svg { width: 15px; height: 15px; }

    .about-quote-card {
      background: var(--ps-bg);
      border: 1px solid var(--ps-grey-100);
      border-left: 4px solid var(--ps-ocre);
      border-radius: var(--r-lg);
      padding: var(--sp-6);
    }

    .about-quote-text {
      font-size: var(--text-md);
      color: var(--ps-green);
      font-style: italic;
      line-height: 1.65;
      margin-bottom: var(--sp-4);
    }

    .about-quote-author {
      font-size: var(--text-sm);
      font-weight: var(--fw-semibold);
      color: var(--ps-green);
    }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .landing-footer {
      background: #FFFFFF;
      border-top: 1px solid #ECEAE4;
      padding: var(--sp-8);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: var(--sp-4);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }

    .footer-logo .wm-ersal,
    .footer-logo .wm-ne {
      color: #285633;
    }

    .footer-logo .wm-business {
      color: #285633;
      opacity: 0.7;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: var(--sp-5);
    }

    .footer-links a {
      font-size: var(--text-xs);
      color: #285633;
      text-decoration: none;
      transition: color var(--t-fast);
    }

    .footer-links a:hover { color: #C9993A; }

    .footer-copy {
      font-size: var(--text-xs);
      color: #4A4A48;
    }

    .footer-disclaimer {
      font-size: var(--text-xs);
      color: #285633;
      max-width: 640px;
      line-height: 1.5;
      margin: 0;
    }

    /* ─── MOBILE RESPONSIVE ─── */

    /* BUG P0-1: Hero full-width en móvil */
    @media (max-width: 768px) {
      .hero {
        width: 100%;
        max-width: 100%;
        padding: 48px 1.5rem 40px;
        box-sizing: border-box;
      }
      .hero h1 { font-size: 28px; }
      .hero p { font-size: 15px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions a, .hero-actions button { text-align: center; justify-content: center; }
      .hero-trust { gap: 12px; }
      .hero-trust-item { font-size: 12px; }
    }

    /* BUG P0-2: Tabla precios — columna única en móvil */
    @media (max-width: 768px) {
      .pricing-grid {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
      }
      .pricing-card {
        width: 100%;
        transform: none !important;
      }
      /* Reordenar: Free primero (bandera), luego Growth */
      .pricing-card.free { order: -2; }
      .pricing-card.featured { order: -1; }
    }

    /* BUG P0-3: Formulario — columna única en móvil */
    @media (max-width: 768px) {
      .form-row {
        grid-template-columns: 1fr !important;
      }
      .access-inner {
        padding: 28px 20px;
        border-radius: 16px;
      }
    }

    /* BUG P1-4: Sección creador — columna única en móvil */
    @media (max-width: 768px) {
      .about-inner {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
      }
      .about-quote-card {
        width: 100%;
        margin-top: 0;
      }
    }

    /* BUG P1-5: Grid sectores — 2 columnas en móvil, 1 en muy pequeño */
    @media (max-width: 768px) {
      .sectors-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
      }
    }
    @media (max-width: 480px) {
      .sectors-grid {
        grid-template-columns: 1fr !important;
      }
    }

    /* BUG P1-6: Hamburger menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #285633;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      background: #FFFFFF;
      border-bottom: 1px solid #E8E6E0;
      padding: 16px 24px;
      flex-direction: column;
      gap: 16px;
      z-index: 99;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: #285633;
      text-decoration: none;
      padding: 8px 0;
      border-bottom: 1px solid #F1F0EC;
    }
    .mobile-menu a:last-child { border-bottom: none; }

    @media (max-width: 768px) {
      .header-nav { display: none; }
      .hamburger { display: flex; }
      .header-actions .btn-cta { display: none; }
    }

    /* BUG P2-8: Card solitaria (7ª card en grid de 3 columnas) */
    @media (min-width: 769px) {
      .sectors-grid .sector-card:nth-child(7) {
        grid-column: 2 / 3;
      }
    }

    /* QA-20260531: tap targets >=44x44 en mobile (WCAG 2.5.5 + brief) */
    @media (max-width: 768px) {
      .sector-cta {
        min-height: 44px;
        padding: 12px 4px;
        font-size: 13px;
      }
      .sector-cta svg { width: 14px; height: 14px; }
      .footer-links {
        flex-wrap: wrap;
        gap: 8px 16px;
      }
      .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 6px 4px;
      }
      .hamburger {
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
      }
      #cookie-banner button {
        min-height: 44px;
        padding: 12px 18px !important;
        font-size: 13px !important;
      }
    }

    /* CTA secundario hero — estilo glassmorphism */
    .btn-outline-lg {
      background: rgba(255,255,255,0.15);
      border: 2px solid #FFFFFF;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .btn-outline-lg:hover {
      background: rgba(255,255,255,0.25);
    }

    /* ── TASK 2: MOBILE FIX DEFINITIVO ─────────────────────────────────── */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
    section[id] { scroll-margin-top: 80px; }

    .landing-header {
      box-sizing: border-box;
      max-width: 100%;
    }

    @media (max-width: 640px) {
      /* Hero */
      .hero {
        padding: 40px 16px 36px;
        width: 100%;
        box-sizing: border-box;
      }
      .hero h1 {
        font-size: clamp(22px, 7vw, 30px) !important;
        letter-spacing: -0.02em;
        word-break: break-word;
      }
      .hero p { font-size: 14px !important; }
      .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      .hero-trust-item { font-size: 12px; }
      .hero-eyebrow { font-size: 10px; }

      /* Header */
      .header-actions .btn-outline,
      .header-actions .btn-cta {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
      }

      /* Secciones generales */
      .section, .pricing-section, .diag-section,
      .sectors-section, .access-section, .faq-section,
      .about-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
      }

      /* Grids → columna única */
      .pain-grid,
      .pricing-grid,
      .sectors-grid,
      .about-inner,
      .check-grid {
        grid-template-columns: 1fr !important;
      }

      /* Botones CTA */
      .btn-pricing-primary,
      .btn-pricing-ocre,
      .btn-cta,
      .btn-cta-lg,
      .btn-submit {
        min-height: 48px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
      }

      /* Chat bubble: solo icono en mobile */
      #pb-chat-bubble span { display: none; }
      #pb-chat-bubble { padding: 14px; border-radius: 50%; }
      #pb-chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 80px; }

      /* Stat numbers section */
      .pain-stat { font-size: clamp(28px, 8vw, 48px); }

      /* Form rows → columna única */
      .form-row { grid-template-columns: 1fr !important; }
    }
    /* ── FIN MOBILE FIX ───────────────────────────────────────────────── */

    .about-quote-tagline { font-size: 11px; color: var(--ps-grey-400); margin: 8px 0 0; font-style: italic; }
    @font-face {
      font-family: 'OpenDyslexic';
      src: url('/landing/assets/fonts/OpenDyslexic-Regular.otf') format('opentype');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    #ps-a11y-bubble {
      position: fixed;
      left: calc(24px + env(safe-area-inset-left, 0px));
      bottom: calc(24px + var(--ps-banner-offset, 0px) + env(safe-area-inset-bottom, 0px));
      width: 56px; height: 56px; padding: 0;
      background: #285633; color: #fff;
      border: 0; border-radius: 50%;
      cursor: pointer; z-index: 9999;
      display: grid; place-items: center;
      box-shadow: 0 6px 20px rgba(40,86,51,0.35);
      transition: transform 0.15s ease;
    }
    #ps-a11y-bubble:hover { transform: translateY(-2px); }
    #ps-a11y-bubble:focus-visible { outline: 2px solid #285633; outline-offset: 3px; }
    @media (prefers-reduced-motion: reduce) { #ps-a11y-bubble { transition: none; } }

    #ps-a11y-panel {
      position: fixed;
      left: calc(24px + env(safe-area-inset-left, 0px));
      bottom: calc(96px + var(--ps-banner-offset, 0px) + env(safe-area-inset-bottom, 0px));
      width: 320px; max-width: calc(100vw - 32px);
      /* Cap a la altura restante del viewport menos el offset inferior del propio panel
         y un margen superior; con scroll para que todos los controles sigan accesibles
         incluso cuando el cookie banner está visible en móviles pequeños. */
      max-height: calc(100vh - 96px - var(--ps-banner-offset, 0px) - env(safe-area-inset-bottom, 0px) - env(safe-area-inset-top, 0px) - 24px);
      overflow-y: auto;
      overscroll-behavior: contain;
      background: #FFFFFF; color: #285633;
      border: 1px solid rgba(40,86,51,0.12); border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
      z-index: 9999;
      font-family: Inter, system-ui, sans-serif;
      padding: 18px 18px 14px;
      animation: ps-a11y-slide-in 0.22s ease;
    }
    @keyframes ps-a11y-slide-in {
      from { transform: translateY(8px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    @media (prefers-reduced-motion: reduce) { #ps-a11y-panel { animation: none; } }
    #ps-a11y-panel[hidden] { display: none; }

    .ps-a11y-head {
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
    }
    .ps-a11y-head h2 {
      color: #285633; font-size: 15px; margin: 0; flex: 1;
      font-weight: 700; letter-spacing: 0.01em;
    }
    .ps-a11y-close {
      background: none; border: 0; color: #285633;
      font-size: 22px; line-height: 1; cursor: pointer; padding: 4px 6px;
      border-radius: 6px;
    }
    .ps-a11y-close:hover { background: rgba(40,86,51,0.08); }
    .ps-a11y-close:focus-visible { outline: 2px solid #285633; outline-offset: 2px; }

    .ps-a11y-row {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(40,86,51,0.08);
    }
    .ps-a11y-row:last-of-type { border-bottom: 0; }
    .ps-a11y-row label, .ps-a11y-row .ps-a11y-label {
      font-size: 13px; color: #285633; font-weight: 600;
    }
    .ps-a11y-row p {
      font-size: 11px; color: #4A4A48; margin: 2px 0 0; font-weight: 400; line-height: 1.4;
    }

    /* Toggle switch (role=switch) — hit target ≥44px (WCAG 2.2 AA) */
    .ps-a11y-switch {
      position: relative; appearance: none;
      width: 44px; height: 26px; min-width: 44px;
      background: #E8E6E0; border: 1px solid rgba(40,86,51,0.2);
      border-radius: 999px; cursor: pointer;
      transition: background 0.18s ease;
    }
    .ps-a11y-switch::before {
      content: ''; position: absolute; top: 2px; left: 2px;
      width: 20px; height: 20px; border-radius: 50%;
      background: #FFFFFF; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      transition: transform 0.18s ease;
    }
    .ps-a11y-switch[aria-checked="true"] { background: #285633; border-color: #285633; }
    .ps-a11y-switch[aria-checked="true"]::before { transform: translateX(18px); }
    .ps-a11y-switch:focus-visible { outline: 2px solid #285633; outline-offset: 2px; }
    /* Fila clicable para ampliar área táctil */
    .ps-a11y-row { cursor: pointer; min-height: 44px; }
    @media (prefers-reduced-motion: reduce) {
      .ps-a11y-switch, .ps-a11y-switch::before { transition: none; }
    }

    /* Selector de tamaño de texto (3 niveles) */
    .ps-a11y-text-group, .ps-a11y-tts-group { display: inline-flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
    .ps-a11y-tts-group button {
      min-width: 92px;
      padding: 6px 10px;
      border-radius: 8px;
      border: 1px solid #C9993A;
      background: #FFFFFF;
      color: #285633;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .ps-a11y-tts-group button svg { width: 14px; height: 14px; flex-shrink: 0; }
    .ps-a11y-tts-group button:hover:not([disabled]) { background: #F8F7F4; }
    .ps-a11y-tts-group button:focus-visible { outline: 2px solid #285633; outline-offset: 2px; }
    .ps-a11y-tts-group button[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
      border-color: rgba(40,86,51,0.3);
    }
    .ps-a11y-tts-row { padding-top: 8px; }
    .ps-a11y-tts-hint {
      font-size: 11px;
      color: rgba(40,86,51,0.7);
      margin: 4px 0 0;
    }
    .ps-a11y-text-group button {
      background: #FFFFFF; color: #285633;
      border: 1px solid rgba(40,86,51,0.2);
      padding: 4px 10px; border-radius: 6px; cursor: pointer;
      font-family: Inter, system-ui, sans-serif; font-weight: 700;
    }
    .ps-a11y-text-group button[aria-pressed="true"] {
      background: #285633; color: #FFFFFF; border-color: #285633;
    }
    .ps-a11y-text-group button:focus-visible { outline: 2px solid #285633; outline-offset: 2px; }

    .ps-a11y-reset {
      margin-top: 12px; width: 100%;
      background: transparent; color: #285633;
      border: 1px solid rgba(40,86,51,0.3);
      padding: 9px 12px; border-radius: 8px; cursor: pointer;
      font-family: Inter, system-ui, sans-serif; font-weight: 600; font-size: 12px;
    }
    .ps-a11y-reset:hover { background: rgba(40,86,51,0.06); }
    .ps-a11y-reset:focus-visible { outline: 2px solid #285633; outline-offset: 2px; }

    .ps-a11y-foot {
      margin-top: 10px; font-size: 10px; color: #8A8680; text-align: center;
    }
    .ps-a11y-foot a { color: #285633; }

    /* Aplicación de preferencias a TODO el documento — escala el root para que rem cascadee */
    html[data-ps-text="115"] { font-size: 115%; }
    html[data-ps-text="130"] { font-size: 130%; }
    html.ps-high-contrast {
      --ps-green: #0f3a1c;
    }
    html.ps-high-contrast body { color: #0f3a1c; }
    html.ps-high-contrast a { color: #0f3a1c; text-decoration: underline; }
    /* Override: los CTAs con fondo verde mantienen texto blanco en alto contraste para preservar AA. */
    html.ps-high-contrast a.btn-cta,
    html.ps-high-contrast a.btn-pricing-primary { color: #fff; }
    /* Excepciones: CTAs con fondo blanco (btn-primary-on-green y la card pricing destacada). */
    /* Texto verde oscuro sobre blanco mantiene contraste AAA y el override anterior los dejaría invisibles. */
    html.ps-high-contrast a.btn-primary-on-green,
    html.ps-high-contrast .pricing-card.featured a.btn-pricing-primary { color: var(--ps-green); }
    html.ps-high-contrast button,
    html.ps-high-contrast input,
    html.ps-high-contrast textarea,
    html.ps-high-contrast select { outline: 1px solid #0f3a1c; }
    html.ps-reduce-motion *,
    html.ps-reduce-motion *::before,
    html.ps-reduce-motion *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    html.ps-dyslexic body,
    html.ps-dyslexic input,
    html.ps-dyslexic button,
    html.ps-dyslexic textarea,
    html.ps-dyslexic select {
      font-family: 'OpenDyslexic', Inter, system-ui, sans-serif !important;
    }
    /* OpenDyslexic en contenedores de widgets flotantes (no heredan por font-family local) */
    html.ps-dyslexic #ps-a11y-panel,
    html.ps-dyslexic #ps-a11y-panel *,
    html.ps-dyslexic #pb-chat-panel,
    html.ps-dyslexic #pb-chat-panel *,
    html.ps-dyslexic #pb-exit-popup,
    html.ps-dyslexic #pb-exit-popup * {
      font-family: 'OpenDyslexic', Inter, system-ui, sans-serif !important;
    }
    /* Espaciado de línea: aplica también a descendientes con line-height explícito */
    html.ps-line-spacing body,
    html.ps-line-spacing p,
    html.ps-line-spacing li,
    html.ps-line-spacing span,
    html.ps-line-spacing a,
    html.ps-line-spacing h1, html.ps-line-spacing h2, html.ps-line-spacing h3,
    html.ps-line-spacing #ps-a11y-panel *, html.ps-line-spacing #pb-chat-panel * {
      line-height: 1.8 !important;
      letter-spacing: 0.03em !important;
      word-spacing: 0.16em !important;
    }
    /* Chat widget — burbuja icon-only 56x56, abajo-derecha */
    #pb-chat-bubble {
      position: fixed;
      right: calc(24px + env(safe-area-inset-right, 0px));
      bottom: calc(24px + var(--ps-banner-offset, 0px) + env(safe-area-inset-bottom, 0px));
      width: 56px; height: 56px; padding: 0;
      background: #285633; color: #fff;
      border: 0; border-radius: 50%;
      cursor: pointer; z-index: 9999;
      display: grid; place-items: center;
      box-shadow: 0 6px 20px rgba(40,86,51,0.35);
      transition: transform 0.15s ease;
    }
    #pb-chat-bubble:hover { transform: translateY(-2px); }
    #pb-chat-bubble:focus-visible { outline: 2px solid #285633; outline-offset: 3px; }
    /* Badge mensaje nuevo */
    #pb-chat-bubble.pb-has-unread::after {
      content: ''; position: absolute; top: 6px; right: 6px;
      width: 12px; height: 12px; border-radius: 50%;
      background: #D9534F; border: 2px solid #FFFFFF;
      animation: pb-pulse 1.6s ease-in-out infinite;
    }
    @keyframes pb-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(217,83,79,0.55); }
      50%      { box-shadow: 0 0 0 6px rgba(217,83,79,0); }
    }
    @media (prefers-reduced-motion: reduce) {
      #pb-chat-bubble, #pb-chat-bubble.pb-has-unread::after { transition: none; animation: none; }
    }
    .sr-only {
      position: absolute !important; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
      white-space: nowrap; border: 0;
    }
    #pb-chat-panel {
      position: fixed;
      right: calc(24px + env(safe-area-inset-right, 0px));
      bottom: calc(96px + var(--ps-banner-offset, 0px) + env(safe-area-inset-bottom, 0px));
      width: 340px; max-height: 500px;
      background: #fff; border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      z-index: 9999; display: flex; flex-direction: column;
      font-family: Inter, system-ui, sans-serif;
      overflow: hidden;
    }
    .pb-chat-header {
      background: #285633; padding: 12px 16px;
      display: flex; align-items: center; gap: 10px;
      color: #fff; font-weight: 600; font-size: 14px;
    }
    .pb-laia-avatar { flex-shrink: 0; border-radius: 50%; }
    .pb-chat-header button {
      margin-left: auto; background: none; border: none;
      color: rgba(255,255,255,0.7); font-size: 20px; cursor: pointer;
      line-height: 1; padding: 0;
    }
    .pb-chat-messages {
      flex: 1; overflow-y: auto; padding: 14px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .pb-msg-bot, .pb-msg-user {
      max-width: 85%; padding: 10px 14px;
      border-radius: 12px; font-size: 13px; line-height: 1.5;
    }
    .pb-msg-bot { background: #F0F5F1; color: #285633; align-self: flex-start; }
    .pb-msg-user { background: #285633; color: #fff; align-self: flex-end; }
    .pb-msg-typing { background: #F0F5F1; color: #8A8680; font-style: italic; align-self: flex-start; }
    .pb-quick-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .pb-quick-chips button {
      padding: 5px 10px; border: 1px solid rgba(40,86,51,0.3);
      border-radius: 99px; font-size: 12px; color: #285633;
      background: #fff; cursor: pointer;
      font-family: Inter, system-ui, sans-serif;
    }
    .pb-quick-chips button:hover { background: #F0F5F1; }
    .pb-chat-input-area {
      display: flex; gap: 8px; padding: 10px 14px;
      border-top: 1px solid #E8E6E0;
    }
    .pb-chat-input-area input {
      flex: 1; border: 1px solid #E8E6E0; border-radius: 8px;
      padding: 8px 12px; font-size: 13px; outline: none;
      font-family: Inter, system-ui, sans-serif;
    }
    .pb-chat-input-area input:focus { border-color: #285633; }
    .pb-chat-input-area button {
      background: #285633; color: #fff; border: none;
      border-radius: 8px; padding: 8px 12px; cursor: pointer;
    }
    .pb-chat-disclaimer {
      text-align: center; font-size: 10px; color: #8A8680;
      padding: 4px 14px 10px; margin: 0;
    }
    /* Exit popup — widget flotante bottom-right (NO modal bloqueante) */
    #pb-exit-popup {
      position: fixed; bottom: calc(24px + var(--ps-banner-offset, 0px)); right: 24px;
      background: #fff; border-radius: 14px;
      padding: 18px 20px 16px; width: 320px; max-width: calc(100vw - 32px);
      z-index: 9998; font-family: Inter, system-ui, sans-serif;
      box-shadow: 0 12px 36px rgba(0,0,0,0.18);
      border: 1px solid rgba(40,86,51,0.12);
      animation: pb-exit-slide-in 0.3s ease;
    }
    @keyframes pb-exit-slide-in {
      from { transform: translateY(20px); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }
    .pb-exit-header {
      display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
    }
    #pb-exit-popup h3 { color: #285633; font-size: 18px; margin: 0; }
    #pb-exit-popup p { color: #4A4A48; font-size: 13px; margin: 0 0 12px; line-height: 1.5; }
    .pb-exit-close {
      position: absolute; top: 8px; right: 10px;
      background: none; border: none; font-size: 20px;
      color: #8A8680; cursor: pointer; line-height: 1; padding: 4px;
    }
    .pb-exit-discount-badge {
      background: #C9993A; color: #fff;
      font-size: 14px; font-weight: 800; letter-spacing: 0.02em;
      padding: 4px 10px; border-radius: 999px;
      display: inline-block;
    }
    .pb-exit-btn {
      display: block; background: #285633; color: #fff;
      padding: 11px 18px; border-radius: 10px; text-decoration: none;
      font-weight: 700; font-size: 13px; text-align: center;
    }
    .pb-exit-btn-sec {
      display: block; color: #285633; font-size: 12px;
      margin-top: 8px; text-decoration: underline; text-align: center;
    }
    @media (max-width: 480px) {
      #pb-chat-panel { width: calc(100vw - 32px); right: 16px; bottom: calc(88px + var(--ps-banner-offset, 0px) + env(safe-area-inset-bottom, 0px)); }
      #pb-chat-bubble { right: calc(16px + env(safe-area-inset-right, 0px)); }
      #pb-exit-popup { width: calc(100vw - 32px); right: 16px; bottom: calc(88px + var(--ps-banner-offset, 0px)); }
    }
