  :root {
      --ink: #0f172a;
      /* question text */
      --muted: #64748b;
      /* answer text */
      --card: #ffffff;
      --line: #e2e8f0;
      --bg: #f6f8fb;
      --radius: 14px;
      --shadow: 0 8px 24px rgba(2, 12, 27, .06);
  }

  .price_main_text {
      font-weight: 500;
      font-size: 64px;
      color: #201C44;
      line-height: 110.00000000000001%;
      letter-spacing: -0.56px;
      text-align: center;
      vertical-align: middle;
      margin: 0 0 2rem;
      text-transform: capitalize;

  }

  .included_item {
      color: #fafafa;
  }

  .price_main_text2 {
      font-weight: 400;
      color: #201C44;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 1%;
      text-align: center;

  }


  .faq_container {
      padding: 16px;
      display: grid;
      place-items: center;
      /* background: var(--bg); */
  }

  .faq_card {
      width: 100%;
      max-width: 720px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
  }

  .faq_list {
      margin: 0;
      padding: 0;
      list-style: none;
  }

  .faq_item+.faq_item {
      border-top: 1px solid var(--line);
  }

  /* Question (button) */
  .faq_question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      background: transparent;
      border: 0;
      cursor: pointer;
      text-align: left;
      color: var(--ink);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .01em;
  }

  .faq_question:focus-visible {
      outline: 3px solid #cfe3ff;
      outline-offset: -3px;
  }

  /* Icon (chevron). Use either Font Awesome inside or fallback caret */
  .faq_icon {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      color: #334155;
      transition: transform .2s ease;
  }

  .faq_item.is-open .faq_icon {
      transform: rotate(180deg);
  }

  /* Answer panel */
  .faq_answer {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      padding: 0 18px;
      /* horizontal padding always */
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
      background: #f9fbff;
  }

  .faq_item.is-open .faq_answer {
      /* vertical padding is applied inline from JS for smoother height */
      border-top: 1px solid var(--line);
  }


  .customers_section_container {
      background: var(--page);
      padding: clamp(26px, 5vw, 56px) 16px;
  }

  .customers_container {
      max-width: var(--container);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(18px, 4vw, 46px);
      align-items: center;
  }

  /* ===== Copy ===== */
  .customers_headline {
      font-weight: 500;
      font-style: Medium;
      font-size: 56px;
      line-height: 130%;
      letter-spacing: 0;

      margin: 0;
      color: var(--ink);
  }

  .customers_accent {
      color: #3F98CC !important;
      background-clip: text;
      }

  .customers_subtext {
      margin-top: 10px;
      color: var(--muted);
      font-size: clamp(14px, 1.6vw, 16px);
  }

  /* ===== Logo wall ===== */
  .customers_logo_wall {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      justify-items: stretch;
  }



  .customers_logo_wall {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .customers_logo_card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: var(--shadow);
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 6px 10px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      text-align: center;
  }

  .customers_logo_card:hover {
      transform: translateY(-2px);
      border-color: #d8dee8;
      box-shadow: 0 12px 28px rgba(16, 24, 40, .1);
  }

  /* Logo text (use your SVGs/images if available) */
  .customers_logo_text {
      font-weight: 800;
      letter-spacing: .08em;
      color: #144266;
      font-size: 14px;
      text-transform: uppercase;
      white-space: nowrap;
  }

  /* Optional small emblem circle (placeholder) */
  .customers_logo_emblem {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #0b4d72;
      opacity: .9;
  }




  /* Small screens */
  @media (max-width:767px) {
      .faq_question {
          font-size: 15px;
          padding: 14px 16px;
      }

      .faq_answer {
          font-size: 14.5px;
      }

      .customers_container {
          grid-template-columns: 1fr;
      }

  }