/* ── Hero ── */
    .ayuda-hero {
      background: linear-gradient(135deg, #1e1b4b 0%, #312e81 55%, #4338ca 100%);
      color: #fff;
      padding: 52px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ayuda-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
    }
    .ayuda-hero .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: #c7d2fe;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .ayuda-hero h1 {
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }
    .ayuda-hero p {
      font-size: 15px;
      color: rgba(255,255,255,.75);
      max-width: 560px;
      margin: 0 auto 24px;
    }

    /* Hero search */
    .hero-search-wrap {
      max-width: 520px;
      margin: 0 auto;
      position: relative;
    }
    .hero-search-wrap .hs-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      pointer-events: none;
    }
    .hero-search {
      width: 100%;
      padding: 14px 16px 14px 48px;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      box-shadow: 0 4px 24px rgba(0,0,0,.2);
      color: #1a1a1a;
    }
    .hero-search::placeholder { color: #aaa; }
    .hero-search:focus { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

    /* ── Stats strip ── */
    .ayuda-stats {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
    }
    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 18px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-right: 1px solid #f0f0f0;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item .st-icon { font-size: 26px; flex-shrink: 0; }
    .stat-item h3 { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
    .stat-item p { font-size: 12px; color: #777; }

    /* ── Category filter ── */
    .cat-filter {
      background: #f9f9f9;
      border-bottom: 1px solid #efefef;
      padding: 10px 0;
      overflow-x: auto;
    }
    .cat-filter-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 8px;
      white-space: nowrap;
    }
    .cat-pill {
      background: #fff;
      border: 1px solid #ddd;
      color: #444;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      transition: all .15s;
    }
    .cat-pill:hover { border-color: #4338ca; color: #4338ca; }
    .cat-pill.active { background: #4338ca; border-color: #4338ca; color: #fff; }

    /* ── Main layout ── */
    .ayuda-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 20px 0;
      display: grid;
      grid-template-columns: 1fr 296px;
      gap: 28px;
      align-items: start;
    }

    /* ── Results count bar ── */
    .results-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      font-size: 13px;
      color: #666;
    }
    .results-bar strong { color: #4338ca; }

    /* ── FAQ Group ── */
    .faq-group { margin-bottom: 28px; }
    .faq-group:last-child { margin-bottom: 0; }
    .faq-group-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .faq-group-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: #eef2ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .faq-group-header h2 {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
    }
    .faq-group-divider {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, #ddd, transparent);
    }

    /* ── FAQ accordion ── */
    .faq-list { display: flex; flex-direction: column; gap: 8px; }

    .faq-item {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .faq-item.open {
      border-color: #4338ca;
      box-shadow: 0 2px 12px rgba(67,56,202,.08);
    }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 18px;
      text-align: left;
      font-size: 14.5px;
      font-weight: 600;
      color: #1a1a1a;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      transition: background .15s, color .15s;
      font-family: inherit;
      line-height: 1.4;
    }
    .faq-trigger:hover { background: #f5f3ff; color: #4338ca; }
    .faq-item.open .faq-trigger { background: #f5f3ff; color: #4338ca; }

    .faq-trigger-left {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
    }
    .faq-q-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #e0e7ff;
      color: #4338ca;
      font-size: 13px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .15s;
    }
    .faq-item.open .faq-q-icon { background: #4338ca; color: #fff; }

    .faq-chevron {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
      transition: transform .25s, background .15s;
    }
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      background: #4338ca;
      color: #fff;
    }

    .faq-body {
      display: none;
      padding: 0 18px 18px 58px;
      font-size: 14px;
      color: #555;
      line-height: 1.75;
      background: #fff;
    }
    .faq-body.open { display: block; }
    .faq-body a { color: #4338ca; font-weight: 600; }
    .faq-body a:hover { text-decoration: underline; }

    /* ── No results ── */
    .no-results {
      display: none;
      text-align: center;
      padding: 60px 20px;
      color: #aaa;
    }
    .no-results .nr-icon { font-size: 52px; margin-bottom: 14px; }
    .no-results h3 { font-size: 17px; font-weight: 700; color: #555; margin-bottom: 8px; }
    .no-results p { font-size: 14px; }

    /* ── Still have questions banner ── */
    .still-questions {
      background: linear-gradient(135deg, #1e1b4b, #312e81);
      border-radius: 12px;
      padding: 28px 28px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 32px;
      margin-botton: 50px;
    }
    .still-questions .sq-icon { font-size: 44px; flex-shrink: 0; }
    .still-questions .sq-body { flex: 1; }
    .still-questions h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
    .still-questions p { font-size: 13.5px; opacity: .82; line-height: 1.6; margin-bottom: 14px; }
    .still-questions .sq-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .sq-btn-wa {
      background: #25D366;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: background .2s;
    }
    .sq-btn-wa:hover { background: #1ebe5d; }
    .sq-btn-mail {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: background .2s;
    }
    .sq-btn-mail:hover { background: rgba(255,255,255,.25); }

    /* ── Sidebar ── */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .sidebar-card-header {
      background: #1a1a2e;
      color: #fff;
      padding: 14px 18px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-card-body { padding: 18px; }

    /* Sidebar CTA */
    .sidebar-cta {
      background: linear-gradient(135deg, #4338ca, #3730a3);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }
    .sidebar-cta h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 12.5px; opacity: .88; margin-bottom: 14px; line-height: 1.6; }
    .sidebar-cta .btn-wa {
      background: #25D366;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 8px;
      transition: background .2s;
    }
    .sidebar-cta .btn-wa:hover { background: #1ebe5d; }
    .sidebar-cta .btn-mail {
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 9px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .2s;
    }
    .sidebar-cta .btn-mail:hover { background: rgba(255,255,255,.25); }

    /* Quick links sidebar */
    .quick-links { display: flex; flex-direction: column; gap: 4px; }
    .quick-link-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 500;
      color: #333;
      transition: background .15s, color .15s;
    }
    .quick-link-item:hover { background: #f5f3ff; color: #4338ca; }
    .quick-link-item .ql-icon { font-size: 17px; flex-shrink: 0; }
    .quick-link-item .ql-arrow { margin-left: auto; font-size: 11px; color: #ccc; }
    .quick-link-item:hover .ql-arrow { color: #4338ca; }

    /* Topic index sidebar */
    .topic-index { display: flex; flex-direction: column; gap: 4px; }
    .topic-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 6px;
      font-size: 13px;
      color: #444;
      cursor: pointer;
      transition: background .15s, color .15s;
    }
    .topic-item:hover { background: #f5f3ff; color: #4338ca; }
    .topic-item .topic-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4338ca;
      flex-shrink: 0;
    }

    /* Contact sidebar */
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
      font-size: 13px;
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .contact-row .info strong { display: block; font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
    .contact-row .info a, .contact-row .info span { color: #1a1a1a; font-weight: 500; }
    .contact-row .info a:hover { color: #4338ca; }

    /* Newsletter */
    .newsletter-desc { font-size: 12.5px; color: #777; line-height: 1.6; margin-bottom: 12px; }
    .newsletter-form { display: flex; flex-direction: column; gap: 8px; }
    .newsletter-form input[type="email"] {
      width: 100%;
      padding: 9px 12px;
      border: 1px solid #ddd;
      border-radius: 7px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      transition: border-color .15s;
    }
    .newsletter-form input[type="email"]:focus { border-color: #4338ca; }
    .newsletter-form button {
      background: #e63946;
      color: #fff;
      padding: 9px;
      border: none;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: background .15s;
    }
    .newsletter-form button:hover { background: #c1121f; }

    /* Responsive */
    @media (max-width: 960px) {
      .ayuda-layout { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .still-questions { flex-direction: column; text-align: center; }
    }
    @media (max-width: 540px) {
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .faq-body { padding-left: 18px; }
      .ayuda-hero { padding: 36px 16px; }
    }