/* Block: pp-v2-faq
 * Extracted from css/product-solutions-v2.css + css/agent-accounts-2026.css
 * Variables and the legacy section-padding neutralizer are scoped to the
 * block root (.pp-v2-faq-section) so each block is self-contained and configurable.
 */

.pp-v2-faq-section {
      --pp-black: #000000;
      --pp-dark: #151515;
      --pp-dark-card: #212121;
      --pp-dark-bg: #1f1f1f;
      --pp-border-dark: #404040;
      --pp-border-light: #d8d8d8;
      --pp-green: #1ea482;
      --pp-green-bold: #0b9b8a;
      --pp-gray: #8e8e8e;
      --pp-gray-light: #d8d8d8;
      --pp-white: #ffffff;
      --pp-beige: #FAFAFA;
      --pp-content-max: 1200px;
      --pp-font-heading: 'Manrope', sans-serif;
      --pp-font-body: 'Inter', sans-serif;
      --pp-font-mono: 'Inconsolata', 'JetBrains Mono', monospace;
}

.pp-v2-faq-section:not(.container) {

      padding: var(--pp-section-pad, 0px) !important;
}

.pp-v2-faq-section {
    --pp-section-pad: 50px 0 90px;
    background-color: #000000;
    position: relative;
}

.pp-v2-faq__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 56px;
    padding: 0;
}

.pp-v2-faq__title,
.pp-v2-faq__header h2 {
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.pp-v2-faq__help {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-v2-faq__help-text {
    font-family: var(--pp-font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.pp-v2-faq__help-link {
    font-family: var(--pp-font-heading);
    font-weight: 700!important;
    font-size: 18px;
    color: var(--pp-green);
    text-decoration: none;
}

.pp-v2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    padding: 0 60px;
}

.pp-v2-faq__item {
    background: #FFFFFF;
    border: 1px solid #BDCCF9;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.pp-v2-faq__item:hover {
    border-color: #9BB3F0;
}

.pp-v2-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 21px 29px;
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.pp-v2-faq__question:hover {
    background: #f8f9fc;
}

.pp-v2-faq__question-text {
    flex: 1;
    padding-right: 16px;
}

.pp-v2-faq__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.pp-v2-faq__icon-plus,
.pp-v2-faq__icon-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pp-v2-faq__icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.pp-v2-faq__icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.pp-v2-faq__item--active .pp-v2-faq__icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.pp-v2-faq__item--active .pp-v2-faq__icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.pp-v2-faq__answer {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
}

.pp-v2-faq__answer-content {
    padding: 0 29px 25px;
    font-family: var(--pp-font-heading);
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.pp-v2-faq__answer-content p {
    margin: 0 0 16px 0;
}

.pp-v2-faq__answer-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
  .pp-v2-faq__header {
          padding: 0 40px;
      }

  .pp-v2-faq__list {
          max-width: none;
      }

}

@media (max-width: 768px) {
  .pp-v2-faq-section {
          --pp-section-pad: 60px 0;
      }

  .pp-v2-faq__list {
          padding: 0;
      }

  .pp-v2-faq__title,
  .pp-v2-faq__header h2 {
          font-size: 22px;
      }

  .pp-v2-faq__help-text,
      .pp-v2-faq__help-link {
          font-size: 16px;
      }

  .pp-v2-faq__question {
          padding: 20px;
          font-size: 16px;
      }

  .pp-v2-faq__answer-content {
          padding: 0 20px 20px;
      }

}

@media (max-width: 1024px) {
  .pp-v2-faq__title,
  .pp-v2-faq__header h2 {
          font-size: 20px;
      }

  .pp-v2-faq__help-text,
      .pp-v2-faq__help-link {
          font-size: 14px;
      }

  .pp-v2-faq__question {
          font-size: 14px;
          padding: 16px;
      }

  .pp-v2-faq__answer-content {
          font-size: 14px;
          padding: 0 16px 16px;
      }

}

.pp-v2-faq-section .container{
    max-width: 1200px;
    padding: 0 20px;
}

.pp-v2-enterprise + .pp-v2-faq-section{
    border-top: 1px solid var(--pp-border-dark);
}
