/* Industry pages — minimal overrides; layout uses homepage Webflow classes */

/* Hero eyebrow — industry pill tag */
.ind-banner-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0066ff;
  background: #f0f6ff;
  border: 1px solid #d3dcf4;
  border-radius: 100px;
}

/* Hero — centered copy with readable line length */
.ind-banner .banner-content-wrap {
  align-items: center;
}

.ind-banner .banner-title {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.ind-banner .description-big._550 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ind-banner .div-block-83 {
  align-items: center;
}

/* FAQ — full-width divider lines, left-aligned content (matches pricing intent) */
.ind-section-faq .faq-f66 {
  align-items: stretch;
  width: 100%;
}

.ind-section-faq .faq-wrapper-2 {
  align-items: stretch;
  width: 100%;
}

.ind-section-faq .question-wrapper-f66 {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Section headers */
.ind-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.ind-section-header .description-big {
  margin-top: 12px;
}

/* Feature row copy width */
.ind-section-hero .ind-feature-desc {
  max-width: 520px;
}

.ind-section-hero .content-wrapper.right .ind-feature-desc {
  margin-left: auto;
}

/* Tighter spacing between feature rows (homepage default is generous) */
.ind-section-hero .hero-wrapper {
  margin-bottom: 48px;
}

.ind-section-hero .hero-wrapper:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .ind-section-hero .hero-wrapper {
    margin-bottom: 64px;
  }
}

/* Document types — light blue band with icon cards */
.ind-documents {
  padding: 64px 0 72px;
  background: #f2f9fe;
}

.ind-documents-intro {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ind-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.ind-doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #d3dcf4;
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.ind-doc-card {
  color: inherit;
  text-decoration: none;
}

a.ind-doc-card:hover,
a.ind-doc-card:focus-visible {
  border-color: #0066ff;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.1);
}

a.ind-doc-card:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
}

.ind-doc-card--static {
  cursor: default;
}

.ind-doc-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f0f6ff;
  border: 1px solid #d3dcf4;
  border-radius: 8px;
  color: #0066ff;
}

.ind-doc-icon svg {
  width: 22px;
  height: 22px;
}

.ind-doc-text {
  flex: 1;
  min-width: 0;
}

.ind-doc-label {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: #24327e;
  font-weight: 500;
  transition: color 0.15s ease;
}

a.ind-doc-card:hover .ind-doc-label,
a.ind-doc-card:focus-visible .ind-doc-label {
  color: #0066ff;
}

.ind-doc-card--static .ind-doc-label {
  color: #474747;
}

/* Trust band */
.ind-trust {
  padding: 64px 0 48px;
  background: #fff;
}

.ind-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.ind-trust-card {
  text-align: center;
  padding: 32px 24px;
  background: #f8fafc;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
}

.ind-trust-icon {
  margin-bottom: 16px;
}

.ind-trust-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.ind-trust-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #474747;
  margin: 0;
}

/* Workflow — gradient into documents band, numbered step cards */
.ind-workflow {
  background: linear-gradient(180deg, #fff 0%, #f2f9fe 120px, #f2f9fe 100%);
  padding: 48px 0 56px;
}

.ind-workflow-header {
  text-align: center;
  margin-bottom: 48px;
}

.ind-workflow-header .description-big {
  margin-top: 12px;
}

.ind-workflow-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0066ff;
  background: #fff;
  border: 1px solid #d3dcf4;
  border-radius: 100px;
}

.ind-workflow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.ind-workflow-track::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #d3dcf4 0%, #0066ff 50%, #d3dcf4 100%);
  opacity: 0.45;
  z-index: 0;
}

.ind-workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px 28px;
  background: #fff;
  border: 1px solid #d3dcf4;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(36, 50, 126, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ind-workflow-step:hover {
  transform: translateY(-3px);
  border-color: #0066ff;
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.12);
}

.ind-workflow-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #0066ff;
  border-radius: 50%;
}

.ind-workflow-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: #0066ff;
  background: #f0f6ff;
  border: 1px solid #d3dcf4;
  border-radius: 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ind-workflow-step:hover .ind-workflow-step-icon {
  border-color: #0066ff;
  color: #0066ff;
}

.ind-workflow-step-icon svg {
  width: 28px;
  height: 28px;
}

.ind-workflow-step-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  color: #24327e;
}

.ind-workflow-step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #474747;
}

.ind-workflow-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.ind-workflow-cta .ind-workflow-btn {
  float: none;
  display: inline-block;
}

/* Documents continues the same blue band */
.ind-workflow + .ind-documents {
  padding-top: 48px;
  border-top: 1px solid #d3dcf4;
}

@media (max-width: 991px) {
  .ind-doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-trust-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .ind-workflow-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ind-workflow-track::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .ind-documents,
  .ind-trust {
    padding: 48px 0 56px;
  }

  .ind-doc-grid {
    grid-template-columns: 1fr;
  }

  .ind-section-header {
    margin-bottom: 28px;
  }

  .ind-workflow {
    padding: 40px 0 48px;
  }

  .ind-workflow-header {
    margin-bottom: 32px;
  }

  .ind-workflow-track {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}
