body.feature-page {
  min-height: 100vh;
}

.feature-page .industry-hero-inner {
  max-width: 980px;
}

.feature-page .hero-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.feature-page .hero-meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 26, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 2px rgba(20, 20, 26, 0.04), 0 8px 24px rgba(20, 20, 26, 0.06);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.feature-page .hero-meta-chip::before,
.feature-page .workflow-list li::before,
.feature-page .problem-list li::before,
.feature-page .why-benefits li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--copper);
  font-weight: 700;
}

.feature-page .feature-callout-grid,
.feature-page .workflow-grid,
.feature-page .related-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-page .feature-callout-grid,
.feature-page .workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-page .related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-page .feature-card,
.feature-page .related-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.feature-page .feature-card h3,
.feature-page .related-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.feature-page .feature-card p,
.feature-page .related-card p,
.feature-page .fit-copy p,
.feature-page .workflow-copy p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.72;
}

.feature-page .fit-shell,
.feature-page .workflow-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
}

.feature-page .workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.feature-page .workflow-list li {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.68;
}

.feature-page .workflow-list li::before {
  display: inline-block;
  margin-right: 10px;
}

.feature-page .related-card a {
  color: var(--copper);
  font-weight: 600;
  text-decoration: none;
}

.feature-page .related-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .feature-page .feature-callout-grid,
  .feature-page .workflow-grid,
  .feature-page .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .feature-page .fit-shell,
  .feature-page .workflow-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .feature-page .feature-callout-grid,
  .feature-page .workflow-grid,
  .feature-page .related-grid {
    grid-template-columns: 1fr;
  }

  .feature-page .feature-card,
  .feature-page .related-card,
  .feature-page .workflow-list li {
    border-radius: 22px;
    padding: 22px;
  }
}
