/* Inner pages — dark corporate */
.page-hero {
  position: relative;
  padding: 3.5rem 1.5rem 3rem;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% -15%, rgba(245,158,11,0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 5%, rgba(99,102,241,0.1), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 720px;
  letter-spacing: -0.035em;
  color: var(--text);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-muted);
  border: 1px solid rgba(245,158,11,0.22);
}
.page-hero__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}
.page-hero__lead strong { color: var(--text); font-weight: 600; }

.crumbs {
  padding: 1rem 1.5rem 0;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.8rem;
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; color: var(--text-dim); }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; opacity: 0.35; }
.crumbs a { color: var(--accent-soft); text-decoration: none; font-weight: 500; }
.crumbs a:hover { text-decoration: underline; }

.corp-section {
  padding: 2.5rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.corp-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.025em;
  color: var(--text);
}
.corp-section h2:first-child { margin-top: 0; }
.corp-section p, .corp-section li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}
.corp-section--light {
  background: var(--surface);
  color: var(--text);
  max-width: none;
  border-top: 1px solid var(--border);
}
.corp-section--light .corp-section__inner { max-width: var(--max); margin: 0 auto; }
.corp-section--light p,
.corp-section--light li { color: var(--text-muted); }
.corp-section--light h2 { color: var(--text); }
.corp-section a:not(.btn-coral):not(.btn-outline):not(.btn-primary) { color: var(--accent-soft); }

.feature-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}
.corp-section--light .feature-card {
  background: var(--elevated);
  border-color: var(--border);
  box-shadow: none;
}
.corp-section--light .feature-card:hover {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.feature-card p { margin: 0; font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); }

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin-top: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(245,158,11,0.45);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.blog-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

.blog-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
.blog-card__meta { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.blog-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card h2 a { color: var(--text); text-decoration: none; }
.blog-card h2 a:hover { color: var(--accent-soft); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.article-body h2 { color: var(--text); font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.article-body a { color: var(--accent-soft); }
