/* Industry application theme pages */
.ind-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 14px 32px;
}

.ind-breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin: 14px 0 10px;
}

.ind-breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}

.ind-breadcrumb a:hover {
  text-decoration: underline;
}

.ind-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #0c4a6e 0%, #1d4ed8 48%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.ind-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 36%);
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
}

.ind-hero h1 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.ind-hero h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.ind-hero-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.95;
  max-width: 52em;
}

.ind-hero-img {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.ind-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 140px;
  object-fit: cover;
}

.ind-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ind-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 600;
}

.ind-panel {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 22px 24px;
  margin-bottom: 18px;
  line-height: 1.85;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ind-panel > h2 {
  margin: 0 0 16px;
  font-size: 20px;
  color: #0f172a;
  padding-bottom: 10px;
  border-bottom: 2px solid #dbeafe;
}

.ind-panel > h3 {
  margin: 20px 0 10px;
  font-size: 16px;
  color: #1e40af;
}

.ind-panel p {
  margin: 0 0 12px;
  color: #334155;
}

.ind-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 12px;
  font-weight: 600;
}

.ind-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.ind-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.ind-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ind-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
}

.ind-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.ind-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #0f172a;
}

.ind-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.ind-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.ind-card a:hover {
  text-decoration: underline;
}

.ind-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 18px 0 8px;
}

.ind-step {
  text-align: center;
  padding: 12px 6px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
}

.ind-step-num {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 22px;
}

.ind-step a {
  color: #1e40af;
  font-weight: 700;
  text-decoration: none;
}

.ind-step a:hover {
  text-decoration: underline;
}

.ind-list {
  margin: 10px 0 14px;
  padding-left: 0;
  list-style: none;
}

.ind-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px dashed #e2e8f0;
  color: #334155;
}

.ind-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 20px;
}

.ind-figure {
  margin: 18px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.ind-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.ind-figure figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: #64748b;
  background: #f8fafc;
}

.ind-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.ind-product-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
}

.ind-product-item strong {
  display: block;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.ind-product-item a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.ind-product-item a:hover {
  text-decoration: underline;
}

.ind-product-item span {
  font-size: 12px;
  color: #475569;
}

.ind-cta {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #eff6ff, #f0fdf4);
  border: 1px solid #bbf7d0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ind-cta p {
  margin: 0;
  font-size: 14px;
  color: #334155;
}

.ind-cta a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: #2563eb;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.ind-cta a:hover {
  background: #1d4ed8;
}

.ind-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.ind-article-nav a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  color: #475569;
  text-decoration: none;
}

.ind-article-nav a.active,
.ind-article-nav a:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e40af;
}

.ind-theme-index .theme-card h2 {
  margin: 0 0 8px;
  font-size: 17px;
}

.ind-theme-index .theme-card h2 a {
  color: #0f172a;
  text-decoration: none;
}

.ind-theme-index .theme-card h2 a:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .ind-hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .ind-hero h2 {
    font-size: 22px;
  }

  .ind-grid-2,
  .ind-grid-3,
  .ind-product-grid {
    grid-template-columns: 1fr;
  }

  .ind-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
