.industry-page {
  --industry-black: #231f20;
  --industry-black-soft: #2c2627;
  --industry-orange: #c96a25;
  --industry-orange-soft: rgba(201, 106, 37, 0.1);
  --industry-orange-border: rgba(201, 106, 37, 0.18);
  --industry-text: #0f172a;
  --industry-muted: #64748b;
  --industry-slate-50: #f8fafc;
  --industry-slate-100: #f1f5f9;
  --industry-slate-200: #e2e8f0;
  --industry-white: #ffffff;
  background: var(--industry-white);
  color: var(--industry-text);
}

.industry-page.industry-petroleum {
  --industry-accent: #0f766e;
}

.industry-page.industry-finance {
  --industry-accent: #1d4ed8;
}

.industry-page.industry-healthcare {
  --industry-accent: #0f766e;
}

.industry-page.industry-hospitality {
  --industry-accent: #7c3aed;
}

.industry-page.industry-government {
  --industry-accent: #8b5e34;
}

.industry-page.industry-manufacturing {
  --industry-accent: #b45309;
}

.industry-page .container {
  width: min(100% - 56px, 1320px);
  max-width: 1320px;
  padding-left: 0;
  padding-right: 0;
}

.industry-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 92px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--industry-accent) 28%, transparent) 0%, transparent 34%),
    linear-gradient(135deg, var(--industry-black) 0%, var(--industry-black-soft) 100%);
  color: #fff;
}

.industry-hero .container {
  position: relative;
  z-index: 2;
}

.industry-hero-layout {
  align-items: center;
}

.industry-hero-copy {
  max-width: 760px;
}

.industry-hero-eyebrow,
.industry-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-title {
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 1rem 0 1rem;
  max-width: 15ch;
}

.industry-title em {
  color: var(--industry-orange);
  font-style: italic;
}

.industry-hero-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.64;
  margin-bottom: 1.05rem;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.industry-hero-actions .btn,
.industry-cta-actions .btn {
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
}

.industry-hero-badges,
.industry-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.industry-hero-badges {
  margin-top: 1.5rem;
}

.industry-badge,
.industry-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.66rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.industry-hero-card {
  position: relative;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(44, 38, 39, 0.92);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.industry-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.industry-hero-card > * {
  position: relative;
}

.industry-hero-card h6 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.industry-hero-card > p {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  font-size: 0.86rem;
  max-width: 34ch;
}

.industry-hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-hero-list li {
  display: block;
  padding: 0.88rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.industry-hero-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-height: 760px) and (min-width: 992px) {
  .industry-hero {
    padding: 126px 0 72px;
  }

  .industry-title {
    font-size: clamp(2.2rem, 3.7vw, 3.65rem);
    max-width: 16ch;
  }

  .industry-hero-copy p {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .industry-hero-actions,
  .industry-hero-badges {
    margin-top: 1.25rem;
  }

  .industry-hero-card {
    padding: 1.15rem;
  }

  .industry-nav-band {
    top: 82px;
    padding: 10px 0;
  }
}

@media (max-width: 991.98px) {
  .industry-hero {
    text-align: center;
  }

  .industry-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .industry-title,
  .industry-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .industry-hero-actions,
  .industry-hero-badges,
  .industry-nav {
    justify-content: center;
  }

  .industry-hero-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .industry-section-head,
  .industry-cta-panel {
    text-align: center;
  }

  .industry-section-head p,
  .industry-cta-panel p {
    margin-left: auto;
    margin-right: auto;
  }

  .industry-cta-actions {
    justify-content: center;
  }
}

.industry-nav-band {
  position: sticky;
  top: 92px;
  z-index: 40;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--industry-slate-200);
}

.industry-nav a {
  background: var(--industry-white);
  border-color: var(--industry-slate-200);
  color: var(--industry-text);
}

.industry-nav a:hover {
  border-color: var(--industry-orange-border);
  color: var(--industry-orange);
}

.industry-section {
  padding: 88px 0;
}

.industry-section.alt {
  background: var(--industry-slate-50);
}

.industry-section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.industry-section-eyebrow {
  border-color: var(--industry-orange-border);
  background: var(--industry-orange-soft);
  color: var(--industry-orange);
}

.industry-section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0.9rem 0 0.85rem;
}

.industry-section-head p {
  color: var(--industry-muted);
  line-height: 1.72;
  margin: 0;
}

.industry-signal-grid,
.industry-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.industry-signal-card,
.industry-solution-card,
.industry-delivery-card,
.industry-cta-panel {
  background: var(--industry-white);
  border: 1px solid var(--industry-slate-200);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.industry-signal-card strong,
.industry-delivery-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--industry-orange-soft);
  color: var(--industry-orange);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.industry-signal-card h3,
.industry-solution-card h3,
.industry-delivery-card h3,
.industry-cta-panel h2 {
  font-size: 1.1rem;
  line-height: 1.24;
  margin-bottom: 0.55rem;
  color: var(--industry-text);
}

.industry-signal-card p,
.industry-solution-card p,
.industry-delivery-card p {
  color: var(--industry-muted);
  line-height: 1.62;
  margin: 0;
}

.industry-solution-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.industry-solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--industry-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-solution-list {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--industry-muted);
}

.industry-solution-list li + li {
  margin-top: 0.36rem;
}

.industry-solution-actions,
.industry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
}

.industry-solution-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.76rem 0.92rem;
  border-radius: 999px;
  background: var(--industry-slate-50);
  border: 1px solid var(--industry-slate-200);
  color: var(--industry-text);
  text-decoration: none;
  font-weight: 600;
}

.industry-solution-actions a:hover {
  border-color: var(--industry-orange-border);
  color: var(--industry-orange);
}

.industry-delivery-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
  color: var(--industry-muted);
}

.industry-cta-panel {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--industry-accent) 22%, transparent) 0%, transparent 32%),
    linear-gradient(135deg, var(--industry-black) 0%, var(--industry-black-soft) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.industry-cta-panel h2,
.industry-cta-panel p,
.industry-cta-panel .industry-section-eyebrow {
  color: #fff;
}

.industry-cta-panel .industry-section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.industry-cta-panel p {
  max-width: 64ch;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1199.98px) {
  .industry-signal-grid,
  .industry-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-nav-band {
    top: 80px;
  }
}

@media (max-width: 991.98px) {
  .industry-hero {
    padding: 132px 0 76px;
  }

  .industry-hero-card {
    margin-top: 0.5rem;
  }

  .industry-nav-band {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .industry-page .container {
    width: min(100% - 24px, 100%);
  }

  .industry-title {
    max-width: 12ch;
  }

  .industry-hero-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-signal-grid,
  .industry-solution-grid,
  .industry-delivery-grid {
    grid-template-columns: 1fr;
  }

  .industry-section {
    padding: 68px 0;
  }

  .industry-hero-card,
  .industry-signal-card,
  .industry-solution-card,
  .industry-delivery-card,
  .industry-cta-panel {
    border-radius: 20px;
    padding: 1.2rem;
  }
}
