.dx-solutions .page-hero {
  position: relative;
  padding: 168px 0 88px;
  overflow: hidden;
}

.dx-solutions .page-hero .dx-container {
  max-width: 780px;
}

.dx-solutions .page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
}

.dx-solutions .page-hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--dx-text-muted);
  font-size: 18px;
}

.dx-solutions .page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dx-solutions .company-intro {
  padding: 100px 0;
  text-align: center;
}

.dx-solutions .company-intro .dx-container {
  max-width: 840px;
}

.dx-solutions .company-intro h2 {
  margin-bottom: 32px;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.35;
  font-weight: 600;
}

.dx-solutions .company-intro .lead {
  color: var(--dx-text-muted);
  font-size: 19px;
}

.dx-solutions .brand-signature {
  margin-top: 40px;
  color: var(--dx-gold);
  font-family: var(--dx-font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
}

.dx-solutions .cat-grid,
.dx-solutions .impact-mini-grid,
.dx-solutions .industries-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--dx-line);
  border: 1px solid var(--dx-line);
  border-radius: var(--dx-radius);
}

.dx-solutions .cat-grid,
.dx-solutions .industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dx-solutions .impact-mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dx-solutions .capability-card,
.dx-solutions .impact-card,
.dx-solutions .industry-card {
  background: var(--dx-ink);
  padding: 30px 24px;
}

.dx-solutions .capability-card:hover,
.dx-solutions .impact-card:hover,
.dx-solutions .industry-card:hover {
  background: var(--dx-panel);
}

.dx-solutions .capability-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--dx-gold);
}

.dx-solutions .impact-card .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--dx-teal);
}

.dx-solutions .capability-card h3,
.dx-solutions .impact-card h3,
.dx-solutions .industry-card h3 {
  margin-bottom: 10px;
}

.dx-solutions .impact-card h3,
.dx-solutions .industry-card h3 {
  font-size: 16.5px;
}

.dx-solutions .capability-card p,
.dx-solutions .impact-card p,
.dx-solutions .industry-card p {
  color: var(--dx-text-muted);
  font-size: 14px;
}

.dx-solutions .field-list {
  margin-top: 18px;
}

.dx-solutions .field-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--dx-line);
  color: var(--dx-text-muted);
  font-size: 13px;
}

.dx-solutions .field-row:first-child {
  padding-top: 0;
  border-top: none;
}

.dx-solutions .field-label {
  min-width: 70px;
  flex-shrink: 0;
  padding-top: 1px;
  color: var(--dx-gold);
  font-family: var(--dx-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dx-solutions .flagship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.dx-solutions .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px;
  border: 1px solid var(--dx-line);
  border-radius: var(--dx-radius);
  background: var(--dx-ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.dx-solutions .product-card:hover {
  border-color: var(--dx-line-strong);
  transform: translateY(-4px);
}

.dx-solutions .product-tag {
  margin-bottom: 16px;
  color: var(--dx-teal);
  font-family: var(--dx-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.dx-solutions .product-card h3 {
  margin-bottom: 10px;
}

.dx-solutions .product-card .positioning {
  margin-bottom: 18px;
  color: var(--dx-text-muted);
  font-size: 14.5px;
}

.dx-solutions .product-link {
  margin-top: auto;
  padding-top: 22px;
}

.dx-solutions .dx-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--dx-teal);
  font-family: var(--dx-font-mono);
  font-size: 12.5px;
  font-weight: 500;
}

.dx-solutions .dx-card-link:hover {
  color: var(--dx-gold);
}

.dx-solutions .reasons-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dx-solutions .reason-card {
  position: relative;
  padding-top: 8px;
}

.dx-solutions .reason-number {
  margin-bottom: 8px;
  color: transparent;
  -webkit-text-stroke: 1px var(--dx-line-strong);
  font-family: var(--dx-font-display);
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.dx-solutions .reason-card h3 {
  margin-bottom: 12px;
}

.dx-solutions .reason-card p {
  color: var(--dx-text-muted);
  font-size: 14.5px;
}

@media (max-width: 1080px) {
  .dx-solutions .cat-grid,
  .dx-solutions .industries-grid,
  .dx-solutions .reasons-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .dx-solutions .page-hero {
    padding: 132px 0 68px;
  }

  .dx-solutions .page-hero-subtitle,
  .dx-solutions .company-intro .lead {
    font-size: 16px;
  }

  .dx-solutions .page-hero-cta .dx-btn {
    width: 100%;
    justify-content: center;
  }

  .dx-solutions .company-intro,
  .dx-solutions .dx-section {
    padding: 76px 0;
  }

  .dx-solutions .capability-card,
  .dx-solutions .impact-card,
  .dx-solutions .industry-card,
  .dx-solutions .product-card {
    padding: 26px 22px;
  }

  .dx-solutions .cat-grid,
  .dx-solutions .industries-grid,
  .dx-solutions .impact-mini-grid,
  .dx-solutions .reasons-grid-6 {
    grid-template-columns: 1fr;
  }
}
