/* ==========================================================================
   Service Page Components (v2 - larger type, stronger contrast)
   ========================================================================== */

/* --- Icon card grid --- */
.bx-section {
  padding: 3rem 0;
}

.bx-section.bx-section-tinted {
  background: #f4f6f8;
}

.bx-section-title {
  margin-bottom: 2rem !important;
  /* no font-size override - inherits the site's real h2 size (2.6rem) */
}

.bx-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.bx-card-grid .bx-card {
  flex: 1 1 calc(33.333% - 1.75rem);
  min-width: 240px;
  background: #fff;
  border: 1px solid #e2e5e9;
  box-shadow: 0 2px 8px rgba(16, 39, 74, 0.06);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.bx-card-grid.bx-card-grid-2col .bx-card {
  flex-basis: calc(50% - 1.75rem);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.bx-card img {
  width: 76px;
  height: 76px;
  display: inline-block;
  margin-bottom: .75rem;
}

.bx-card-grid.bx-card-grid-2col .bx-card img {
  display: block;
  width: 64px;
  height: 64px;
}

.bx-card .bx-card-title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #10274a;
  margin: 0 0 .5rem;
  letter-spacing: normal;
}

.bx-card .bx-card-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #4e4e4e;
  margin: 0;
}

@media (max-width: 768px) {
  .bx-card-grid .bx-card { flex-basis: calc(50% - 1.75rem); }
  .bx-card-grid.bx-card-grid-2col .bx-card { flex-basis: 100%; }
}
@media (max-width: 480px) {
  .bx-card-grid .bx-card { flex-basis: 100%; }
}

/* --- FSE experience tier cards --- */
.bx-tier-section {
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: 20px;
  padding: 3rem;
}

.bx-tier-intro {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #4e4e4e;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.bx-tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bx-tier-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 220px;
  background: #f4f6f8;
  border: 1px solid #e2e5e9;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.bx-tier-card .bx-tier-name {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #10274a;
  margin: 0 0 .5rem;
}

.bx-tier-card .bx-tier-dots {
  color: #e2570a;
  font-size: 1.5rem;
  letter-spacing: 5px;
  margin: 0 0 .5rem;
}

.bx-tier-card .bx-tier-desc {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4e4e4e;
  margin: 0;
}

.bx-tier-equipment-note {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #6b6b6b;
  text-align: center;
  max-width: 42rem;
  margin: 2rem auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bx-tier-card { flex-basis: 100%; }
}

/* --- Proof / testimonial section --- */
.bx-proof-row {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.bx-proof-photo {
  flex: 0 0 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(16, 39, 74, 0.12);
}

.bx-proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.bx-proof-quote {
  flex: 1;
  background: #f4f6f8;
  border-left: 6px solid #e2570a;
  border-radius: 0 14px 14px 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bx-proof-quote p.bx-quote-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 1rem;
}

.bx-proof-quote p.bx-quote-attribution {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #10274a;
  margin: 0;
}

.bx-proof-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.bx-proof-bullet {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 260px;
  display: flex;
  gap: .75rem;
  background: #f4f6f8;
  border: 1px solid #e2e5e9;
  border-radius: 10px;
  padding: 1.25rem;
}

.bx-proof-bullet .bx-check {
  color: #92c743;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bx-proof-bullet p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #4e4e4e;
  margin: 0;
}

.bx-proof-bullet p strong {
  color: #10274a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .bx-proof-row { flex-direction: column; }
  .bx-proof-photo { flex-basis: auto; height: 240px; }
  .bx-proof-bullet { flex-basis: 100%; }
}

/* --- Scoped photo rounding for the intro section - ONLY applies where the
   .bx-rounded-photo class is explicitly added, so it does not affect the
   other pages that share the .sec-image-headline-text-01 pattern --- */
.image.abs-group.bx-rounded-photo {
  border-radius: 16px;
  overflow: hidden;
}

.bx-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.bx-industry-item {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e5e9;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(16, 39, 74, 0.06);
}

.bx-industry-item img {
  width: 48px;
  height: 48px;
  margin: 0 0 .75rem;
  display: block;
}

.bx-industry-item p {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #10274a;
  margin: 0;
  line-height: 1.3;
}

/* --- FAQ accordion --- */
.bx-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bx-faq-grid .bx-faq-entry-full {
  grid-column: 1 / -1;
}

.bx-faq-entry details {
  border: 1px solid #e2e5e9;
  border-radius: 10px;
  padding: 0;
  background: #fff;
}

.bx-faq-entry summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bx-faq-entry summary::-webkit-details-marker { display: none; }

.bx-faq-entry summary::after {
  content: '+';
  color: #e2570a;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 1rem;
  transition: transform .25s;
}

.bx-faq-entry details[open] summary::after {
  transform: rotate(45deg);
}

.bx-faq-entry .bx-faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #4e4e4e;
}

@media (max-width: 768px) {
  .bx-faq-grid { grid-template-columns: 1fr; }
}
