/* Inner pages: solutions, demo */
.page-hero {
  padding: 130px clamp(16px, 4vw, 48px) 64px;
  background: var(--dark-warm);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../uploads/hero-bg.webp) center/cover no-repeat;
  opacity: 0.35;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow {
  color: var(--bronze);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.page-hero h1 {
  font-size: clamp(42px, 4.5vw, 62px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.08;
  max-width: 18ch;
}
.page-hero p {
  font-size: 27px;
  opacity: 0.82;
  max-width: 52ch;
  line-height: 1.55;
  margin: 0 0 24px;
}
.page-hero .crumbs {
  font-size: 16px;
  color: rgba(255,251,240,0.6);
  margin: 0 0 16px;
}
.page-hero .crumbs a { color: var(--bronze); }

.section { padding: 72px clamp(16px, 4vw, 48px); }
.section h2 {
  font-size: clamp(36px, 3.2vw, 50px);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.section .lede {
  color: var(--muted);
  font-size: 26px;
  line-height: 1.55;
  max-width: 58ch;
  margin: 0 0 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,0.45);
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}
.product-card h3 { margin: 0; font-size: 32px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 12px; }
.product-card h3 .num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--bronze); color: var(--bronze);
  font-size: 15px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.product-card p { margin: 0; color: var(--muted); font-size: 25px; line-height: 1.55; flex: 1; }
.product-card .link { color: var(--bronze); font-weight: 600; font-size: 18px; }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.persona-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: rgba(255,255,255,0.45);
  transition: border-color 0.2s;
}
.persona-card:hover { border-color: var(--bronze); }
.persona-card h3 { margin: 0 0 8px; font-size: 27px; }
.persona-card p { margin: 0 0 12px; font-size: 24px; color: var(--muted); line-height: 1.5; }
.persona-card .link { font-size: 18px; font-weight: 600; color: var(--bronze); }

.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list .dot {
  width: 22px;
  height: 22px;
  background: var(--bronze);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-top: 2px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.mode-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,0.5);
}
.mode-card h3 { margin: 0 0 10px; font-size: 30px; }
.mode-card p { margin: 0; color: var(--muted); font-size: 24px; line-height: 1.55; }

.cta-band {
  background: var(--bronze);
  padding: 56px clamp(16px, 4vw, 48px);
  text-align: center;
}
.cta-band h2 { margin: 0 0 12px; font-size: clamp(34px, 3vw, 46px); }
.cta-band p { margin: 0 auto 24px; max-width: 48ch; color: rgba(11,11,14,0.72); font-size: 24px; }

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 72px clamp(16px, 4vw, 48px);
  width: min(1100px, 94vw);
  margin: 0 auto;
}
.demo-aside h2 { font-size: clamp(36px, 3vw, 46px); margin: 0 0 16px; letter-spacing: -0.03em; }
.demo-aside p { color: var(--muted); font-size: 24px; line-height: 1.55; margin: 0 0 20px; }
.demo-aside ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 22px; line-height: 1.7; }
.demo-form {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.demo-form label { display: block; font-size: 18px; margin-bottom: 7px; }
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--cream);
  border: 0;
  border-radius: var(--radius);
  font-size: 18px;
  margin-bottom: 18px;
  -webkit-appearance: none;
  appearance: none;
}
.demo-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form .form-row > div { margin-bottom: 0; }
.demo-form .form-row input { margin-bottom: 18px; }
#demo-status { font-size: 18px; min-height: 1.2em; margin: 0 0 12px; }
#demo-status.error { color: #C8341A; }
#demo-status.success { color: #1a6b3a; }

@media (max-width: 800px) {
  .product-grid, .persona-grid, .two-col, .demo-layout { grid-template-columns: 1fr; }
  .demo-form .form-row { grid-template-columns: 1fr; }
}
