.bca-hero-section {
  min-height: fit-content;
  background: var(--bca-dark-navy);
  opacity: 0.99;
}

.bca-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 21%) 1px, #00000017 1px),
    linear-gradient(90deg, rgb(255 255 255 / 20%) 1px, #0000000f 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.bca-main {
  padding: 64px 0 88px;
}

.bca-audit-quote__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.bca-audit-quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: var(--header-h);
}

.aud-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 8px;
  gap: 10px;
  display: flex;
  flex-flow: column;
}

/* Accent the checklist icon with the site's existing --audit token so this
   page reads as part of the Audit service line, not a generic form page */
.bca-checklist__head svg {
  stroke: var(--audit);
}

/*=========================
  BCA - CHECKLIST GRID
  ========================= */
.bca-checklist-grid {
  background: var(--bca-card-bg);
  border: 1px solid var(--bca-card-border);
  border-radius: var(--border-radius);
  padding: 16px 20px;
}

.bca-checklist__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bca-card-border);
}

.bca-checklist__head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  background: var(--bca-svg-wrap-primary);
  transition: background var(--transition);
}

.bca-checklist__head-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 1.6;
}

.bca-checklist__head h4 {
  font-family: var(--bca-font-heading);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--bca-dark-navy);
}

.bca-checklist__list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bca-checklist__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--bca-font-base);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.bca-checklist__list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 2.5;
}

/* Hide the native input visually but keep it functional/accessible */
.bca-file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bca-file-upload {
  position: relative;
}

.bca-file-upload__label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed var(--bca-card-border);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-family: var(--bca-font-base);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.bca-file-upload__label:hover {
  border-color: var(--bca-primary);
  background: var(--bca-svg-wrap-primary);
}

.bca-file-upload__label svg {
  width: 18px;
  height: 18px;
  stroke: var(--bca-primary);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.bca-file-upload__filename {
  color: var(--muted) !important;
}

@media (max-width: 1098px) {
  .bca-audit-quote__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bca-checklist-grid {
    padding: 24px 20px;
  }
  .bca-checklist__list {
    grid-template-columns: 1fr;
  }
}
