:root {
  --ind-ink: #071224;
  --ind-muted: #526176;
  --ind-orange: #ff3d12;
  --ind-line: #e6ebf2;
  --ind-shadow: 0 18px 44px rgba(12, 24, 48, 0.08);
}

.industries-page {
  color: var(--ind-ink);
  background: linear-gradient(180deg, #fff 0%, #fbfcff 46%, #fff 100%);
  overflow-x: hidden;
}

.industries-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.industries-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(460px, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: 74px 0 44px;
}

.industries-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
}

.industries-hero h1 span {
  color: var(--ind-orange);
}

.industries-hero h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.industries-hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #334158;
  font-size: 17px;
  line-height: 1.7;
}

.orange,
.industries-final h2 span {
  color: var(--ind-orange);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.industries-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.industries-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 86px;
  padding: 20px 22px;
  border: 1px solid var(--ind-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ind-shadow);
}

.industries-stats div {
  min-height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--ind-line);
  text-align: center;
}

.industries-stats div:last-child {
  border-right: 0;
}

.industries-stats strong {
  color: var(--ind-orange);
  font-size: 26px;
  line-height: 1;
}

.industries-stats small {
  margin-top: 8px;
  color: #334158;
  font-weight: 700;
}

.industry-list {
  display: grid;
  gap: 34px;
  margin: 0 auto 92px;
}

.industry-row {
  display: grid;
  grid-template-columns: 300px minmax(260px, 1fr) 355px;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--ind-line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tint, #fff5ee), #fff);
  box-shadow: var(--ind-shadow);
}

.industry-profile {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
}

.industry-badge {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent, var(--ind-orange));
  box-shadow: 0 10px 24px rgba(15, 27, 50, 0.08);
}

.industry-badge svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-profile h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.08;
}

.industry-profile p {
  margin: 0 0 16px;
  color: #334158;
  line-height: 1.55;
}

.industry-profile img {
  grid-column: 1 / -1;
  width: 100%;
  display: block;
  object-fit: contain;
}

.industry-row h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.industry-row ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2f3d52;
  line-height: 1.4;
}

.industry-row li {
  position: relative;
  padding-left: 20px;
}

.needs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border: 2px solid #111827;
  border-radius: 50%;
}

.industry-diff {
  padding: 20px;
  border: 1px solid rgba(215, 224, 237, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.industry-diff h3 {
  text-align: center;
}

.industry-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.industry-diff h4 {
  margin: 0 0 10px;
  font-size: 12px;
}

.industry-diff .with h4 {
  color: #11a743;
}

.industry-diff .without li::before,
.industry-diff .with li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.industry-diff .without li::before {
  content: "x";
  color: #ef3d32;
}

.industry-diff .with li::before {
  content: "+";
  color: #11a743;
}

.industry-contact {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--accent, var(--ind-orange));
  border-radius: 7px;
  background: #fff;
  color: var(--accent, var(--ind-orange));
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.industry-contact:hover {
  background: var(--accent, var(--ind-orange));
  color: #fff;
}

.industries-final {
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  gap: 34px;
  align-items: center;
  margin: 0 auto 92px;
  padding: 34px;
  border-radius: 8px;
  background: #071324;
  color: #fff;
  box-shadow: var(--ind-shadow);
}

.industries-final img {
  width: 100%;
  display: block;
}

.industries-final h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
}

.industries-final p {
  margin: 0;
  color: #d8e2ef;
  line-height: 1.65;
}

.industries-final .cta-row {
  flex-direction: column;
  align-items: stretch;
}

.industries-final .btn {
  min-height: 48px;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.industries-final .btn-primary {
  border-color: var(--ind-orange);
  background: var(--ind-orange);
  color: #fff;
}

.industries-final .btn-ghost {
  background: #fff;
  color: #071224;
}

.industries-final .btn-ghost:hover {
  border-color: var(--ind-orange);
  background: var(--ind-orange);
  color: #fff;
}

@media (max-width: 980px) {
  .industries-hero,
  .industry-row,
  .industries-final {
    grid-template-columns: 1fr;
  }

  .industries-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-stats div:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .industries-container {
    width: min(100% - 28px, 1180px);
  }

  .industries-hero {
    padding-top: 44px;
  }

  .industries-hero h1 {
    font-size: 42px;
  }

  .industries-stats,
  .industry-diff-grid {
    grid-template-columns: 1fr;
  }

  .industries-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--ind-line);
  }

  .industries-stats div:last-child {
    border-bottom: 0;
  }
}
