.app-section {
  padding: 78px 0;
}

.app-section:nth-of-type(odd) {
  background: #fff;
}

.app-section-head {
  max-width: 820px;
  margin: 0 0 34px;
}

.app-section-head h2,
.app-risk h2,
.app-rfq h2,
.app-final h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.app-section-head p,
.app-risk p,
.app-final p {
  margin: 0;
  color: var(--app-muted);
  font-size: 17px;
  line-height: 1.7;
}

.app-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.app-industry-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--app-line);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.app-industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 92, 163, .4);
  box-shadow: 0 18px 40px rgba(16, 34, 56, .12);
}

.app-industry-card figure {
  margin: 0;
  aspect-ratio: 1.45;
  background: var(--app-soft);
}

.app-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-industry-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.app-industry-body h3,
.app-product-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.app-industry-body p,
.app-product-card p {
  margin: 0;
  color: var(--app-muted);
  line-height: 1.62;
}

.app-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.app-chip-row span {
  border: 1px solid var(--app-line);
  border-radius: 999px;
  padding: 5px 9px;
  color: #324253;
  font-size: 12px;
  line-height: 1;
}

.app-card-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--app-blue);
  font-weight: 700;
}

.app-risk {
  background: var(--app-navy);
  color: #fff;
}

.app-risk-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.app-risk p {
  color: rgba(255,255,255,.78);
}

.app-risk .pl-btn-secondary {
  margin-top: 28px;
  background: #fff;
  color: var(--app-blue);
}

.app-risk-row {
  display: grid;
  grid-template-columns: 92px minmax(0, .75fr) minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.app-risk-row span {
  color: #9dda70;
  font-weight: 700;
}

.app-risk-row h3,
.app-risk-row p {
  margin: 0;
}

.app-risk-row strong {
  color: #fff;
  font-weight: 700;
}

.app-product-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.app-product-card {
  min-height: 260px;
  border-top: 4px solid var(--app-green);
  background: var(--app-soft);
  padding: 20px;
}

.app-product-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--app-blue);
  font-weight: 700;
}
