body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f1e8;
  color: #172033;
}

.page {
  min-height: 100vh;
  padding: 40px 24px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(40, 61, 74, 0.88)),
    linear-gradient(90deg, #f5f1e8, #e8f1ef);
}

.hero,
.feature-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.intro,
.product-panel,
.feature-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.intro {
  padding: 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: #d7f4e4;
  color: #10543f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro h1 {
  max-width: 680px;
  margin: 20px 0 16px;
  font-size: 56px;
  line-height: 0.96;
  font-weight: 850;
}

.intro p {
  max-width: 660px;
  margin: 0;
  color: #3f4d5f;
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #172033;
  text-decoration: none;
  font-weight: 800;
}

.actions .primary {
  background: #172033;
  color: #ffffff;
}

.actions .secondary {
  background: #ffffff;
  color: #172033;
}

.product-panel {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  background: #172033;
  color: #ffffff;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #c9d4e2;
  font-size: 14px;
}

.panel-header strong {
  color: #ffffff;
}

.workflow-list {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #f3c969;
  color: #172033;
  font-weight: 900;
}

.workflow-list p {
  margin: 0;
  color: #edf3f7;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature-grid article {
  padding: 24px;
}

.feature-grid h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature-grid p {
  margin: 0;
  color: #526070;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .page {
    padding: 20px;
  }

  .split,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    padding: 32px 24px;
  }

  .intro h1 {
    font-size: 40px;
  }

  .product-panel {
    min-height: 0;
  }
}
