
  :root{
    --ld-red:#FD0001;
    --ld-black:#131313;
    --ld-text:#141414;
    --ld-muted:#5b5b5b;
    --ld-line:rgba(19,19,19,.12);
  }

  .ld-faq{
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    color: var(--ld-text);
  }

  .ld-faq__header{ margin: 0 0 18px 0; padding: 0 0 6px 0; }

  .ld-faq__kicker{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--ld-black);
  }
  .ld-faq__kicker::before{
    content:"";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ld-red);
  }

  .ld-faq__title{ margin: 10px 0 8px; font-size: 30px; line-height: 1.15; color: var(--ld-black); }
  .ld-faq__sub{ margin: 0; font-size: 15px; line-height: 1.7; color: var(--ld-muted); }

  .ld-faq__list{ border-top: 1px solid var(--ld-line); }

  .ld-faq__item{ border-bottom: 1px solid var(--ld-line); margin: 0; padding: 0; }

  .ld-faq__q{
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 14px;
    outline: none;
    border-radius: 12px;
    transition: background .15s ease;
  }
  .ld-faq__item > summary::-webkit-details-marker{ display:none; }
  .ld-faq__item > summary::marker{ content:""; }

  .ld-faq__qtext{
    font-weight: 800;
    color: var(--ld-black);
    font-size: 18px;
    line-height: 1.45;
    position: relative;
    padding-left: 14px;
  }
  .ld-faq__qtext::before{
    content:"";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--ld-red);
  }

  .ld-faq__q:hover{ background: rgba(19,19,19,.03); }
  .ld-faq__item[open] .ld-faq__q{ background: rgba(253,0,1,.04); }

  .ld-faq__icon{
    width: 22px; height: 22px; flex: 0 0 22px;
    position: relative;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(19,19,19,.18);
  }
  .ld-faq__icon::before,
  .ld-faq__icon::after{
    content:"";
    position:absolute;
    inset: 0;
    margin: auto;
    background: var(--ld-black);
    border-radius: 2px;
    opacity: .9;
  }
  .ld-faq__icon::before{ width: 12px; height: 2px; }
  .ld-faq__icon::after{ width: 2px; height: 12px; transition: transform .18s ease, opacity .18s ease; }

  .ld-faq__item[open] .ld-faq__icon{ box-shadow: inset 0 0 0 1px rgba(253,0,1,.35); }
  .ld-faq__item[open] .ld-faq__icon::after{ transform: scaleY(0); opacity: 0; }

  .ld-faq__a{
    padding: 2px 14px 18px 28px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ld-muted);
  }

  .ld-faq__item[open]{
    border-left: 3px solid rgba(253,0,1,.55);
    padding-left: 10px;
  }

  .ld-faq__q:focus-visible{ box-shadow: 0 0 0 4px rgba(253,0,1,.18); }

  @media (max-width: 640px){
    .ld-faq__title{ font-size: 24px; }
    .ld-faq__q{ padding: 16px 10px; }
    .ld-faq__qtext{ font-size: 18px; }
    .ld-faq__a{ padding-left: 24px; }
  }
