.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.hero {
  margin-top: 4%;
}


.word {
  text-align: center;
}

.word > .section-header {
  margin-bottom: var(--space-md);
}

.glimpse {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.glimpse-text {
  text-align: center;
}

.glimpse-media {
  display: flex;
  justify-content: center;
}

.glimpse-media img {
  width: 320px;
}

.gpt {
  text-align: center;
}

.gpt-hero {
  padding-block: var(--space-2xl);
  background: var(--color-bg-soft);
}

.gpt-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--space-sm);
}

.gpt-hero-text {
  max-width: 640px;
}

.gpt-preview {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.gpt-preview-img {
  width: 140px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.gpt-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: #fff2f4;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8rem;
}

.gpt-example {
  margin-top: 0.3rem;
}

.gpt-cta {
  margin-top: var(--space-md);
}

/* SEARCH HERO - center everything in the section */
.search-hero {
  padding-block: var(--space-2xl);
}

.search-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.search-title {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.search-subtitle {
  margin-bottom: var(--space-md);
}

.search-form {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  justify-content: center;
}

.search-input {
  flex: 1;
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.search-popular-label {
  color: var(--color-text-muted);
}

.search-results {
  margin-top: var(--space-md);
}

.search-result-item {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  background: #ffffff;
  text-align: left;
}

.search-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-title {
  font-weight: 700;
}

.search-result-defs {
  margin-top: var(--space-xs);
}

.search-result-defs li {
  font-size: 0.95rem;
}

.search-result-actions {
  margin-top: var(--space-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-hero {
  padding-block: var(--space-2xl);
  background: #faf5f0;
}

.legal-hero-inner {
  max-width: 720px;
}

.legal-meta {
  margin: 0.5rem 0 1rem;
  color: var(--color-text-muted);
}

.legal-content {
  max-width: 720px;
}

.legal-content ul {
  margin-left: 1rem;
  list-style: disc;
}

.legal-content li + li {
  margin-top: 0.15rem;
}

.survey-hero-inner {
  max-width: 720px;
}

.survey-grid {
  margin-top: var(--space-md);
}

.survey-cta {
  text-align: center;
}

.survey-cta p {
  max-width: 640px;
  margin: 0 auto;
}

.team-grid {
  margin-top: var(--space-md);
}

.journey-inner {
  max-width: 640px;
}

/* Shared "New Way" / CTA split layout, used on index.html and search.html */


.section-highlight-alt {
  width: 100%;
  height: auto;
  background: #faf5f0;
  padding: 6rem 0;
}

.feature-split {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.feature-media{
  width: 400px;
}

.feature-text{
  max-width: 600px;
}


@media (max-width: 768px) {
  .inline-form,
  .inline-form-sm,
  .search-form {
    flex-direction: column;
    align-items: stretch;
  }
}