/* D Square Builders — FAQ page (native details/summary; works without JS) */

.dsb-faq-section {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 40%, #ffffff 100%);
}

.dsb-faq-intro {
  max-width: 760px;
  margin: 0 auto 48px;
}

.dsb-faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #f79d2b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dsb-faq-intro h2 {
  margin: 0 0 14px;
  color: #1a2940;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

.dsb-faq-intro p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}

.dsb-faq-intro a {
  color: #f79d2b;
  font-weight: 600;
}

.dsb-faq-list {
  margin-bottom: 30px;
}

.dsb-faq-item {
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid rgba(26, 41, 64, 0.1);
  overflow: hidden;
}

.dsb-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #f3f4f5;
  color: #222;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dsb-faq-item summary::-webkit-details-marker {
  display: none;
}

.dsb-faq-item summary::marker {
  content: "";
}

.dsb-faq-item summary:hover {
  background: #eceef1;
}

.dsb-faq-item[open] summary {
  background: #1a2940;
  color: #fff;
}

.dsb-faq-q {
  flex: 1;
  padding-right: 8px;
}

.dsb-faq-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a2940;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.dsb-faq-item[open] .dsb-faq-num {
  background: #f79d2b;
}

.dsb-faq-a {
  padding: 20px 22px 22px;
  background: #fff;
}

.dsb-faq-a p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}

.dsb-faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 28px 30px;
  background: linear-gradient(160deg, #1a2940 0%, #243652 100%);
  color: #fff;
}

.dsb-faq-cta h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.dsb-faq-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.dsb-faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.dsb-faq-phone {
  color: #f79d2b;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .dsb-faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dsb-faq-intro h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .dsb-faq-section {
    padding: 55px 0 70px;
  }

  .dsb-faq-item summary {
    font-size: 15px;
    padding: 16px;
  }

  .dsb-faq-cta {
    padding: 24px 20px;
  }
}
