/* ==========================================================================
   BPoint Home — FAQ accordion
   ========================================================================== */

.bp-home .faq-tel { color: var(--blue); text-decoration: underline; }
.bp-home .faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; margin-top: 48px; align-items: start; }
.bp-home .faq-col { display: grid; gap: 0; }

.bp-home [data-acc] .acc-item { border-bottom: 1px solid var(--line); }
.bp-home [data-acc] .acc-item:first-child { border-top: 1px solid var(--line); }

.bp-home .acc-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--navy);
  text-align: left;
  width: 100%;
  transition: .15s;
}
.bp-home .acc-q:hover { color: var(--blue); }
.bp-home .acc-q .aq-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--slate-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: .2s;
}
.bp-home .acc-q .aq-ico > svg { width: 15px; height: 15px; transition: .25s; }
.bp-home .acc-item.open .acc-q { color: var(--blue); }
.bp-home .acc-item.open .acc-q .aq-ico { background: var(--blue-soft); color: var(--blue); }
.bp-home .acc-item.open .acc-q .aq-ico > svg { transform: rotate(180deg); }
.bp-home .acc-a { display: none; padding-bottom: 20px; font-size: 14.5px; color: var(--slate); line-height: 1.7; }
.bp-home .acc-item.open .acc-a { display: block; }

.bp-home .faq-cta {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 30px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bp-home .faq-cta h4 { font-size: 16.5px; }
.bp-home .faq-cta p { font-size: 14px; color: var(--slate); margin-top: 5px; }
.bp-home .faq-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* The FAQ sits on a paper section, so lift the accordion cards clear of it */
.bp-home .sec.paper .faq-cta { background: #fff; }

@media (max-width: 980px) { .bp-home .faq-layout { grid-template-columns: 1fr; } }
