.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3b2f2f;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  padding: 8px;
  z-index: 9999;
  letter-spacing: 0.04em;
}

.demo-banner a {
  color: #b5774e;
  text-decoration: underline;
  margin-left: 8px;
}

.demo-banner a:hover {
  color: #c48860;
}

.site-header {
  top: 36px !important;
}

.hero {
  padding-top: calc(var(--header-h) + 80px + 36px) !important;
}

.page-hero {
  padding-top: calc(var(--header-h) + 36px) !important;
}

.placeholder-img {
  background: #e0dbd4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d857c;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  line-height: 1.6;
  padding: 20px;
}

.placeholder-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.placeholder-logo-footer {
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #6e665d;
  color: #fff;
}

.hero--centered-growth::before {
  width: 100%;
  clip-path: none;
  background: radial-gradient(circle at top, rgba(181, 119, 78, 0.24), transparent 55%);
  opacity: 1;
}

.hero--centered-growth .hero-inner {
  grid-template-columns: 1fr;
  gap: 36px;
}

.hero--centered-growth .hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero--centered-growth .hero-subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero--centered-growth .hero-buttons {
  justify-content: center;
}

.growth-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.growth-media {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-stage-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 48px rgba(32, 24, 21, 0.18);
}

.mini-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.kpi-list {
  display: grid;
  gap: 14px;
}

.kpi {
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

.kpi:first-child {
  border-top: none;
  padding-top: 0;
}

.kpi strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.kpi span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.benefits-grid--horizontal {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card--horizontal {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 24px;
}

.benefit-card--horizontal .benefit-icon {
  margin-bottom: 0;
}

.steps-grid--timeline-growth {
  gap: 24px;
}

.steps-grid--timeline-growth::before {
  top: 23px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
}

.steps-grid--timeline-growth .step {
  text-align: left;
  padding-top: 18px;
}

.steps-grid--timeline-growth .step-number {
  width: 48px;
  height: 48px;
  font-size: 1rem;
  margin: 0 0 14px;
}

.note-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,246,242,0.98) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(59, 47, 47, 0.06);
}

.note-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--text);
}

.bullet-stack {
  display: grid;
  gap: 10px;
}

.bullet-stack li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bullet-stack li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.intake-panel {
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 22px;
}

.intake-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.intake-panel p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.form-placeholder {
  border: 2px dashed var(--gray-300);
  border-radius: 14px;
  padding: 72px 36px;
  text-align: center;
  color: var(--text-secondary);
  background: #fff;
}

.form-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.form-placeholder p {
  margin-top: 8px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .growth-stage {
    grid-template-columns: 1fr;
  }

  .benefits-grid--horizontal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + 48px + 36px) !important;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 36px) !important;
  }

  .header-nav {
    top: calc(var(--header-h) + 36px) !important;
  }

  .hero--centered-growth .hero-inner {
    gap: 28px;
  }

  .benefit-card--horizontal {
    grid-template-columns: 48px 1fr;
  }

  .steps-grid--timeline-growth .step {
    padding-top: 0;
  }

  .form-placeholder {
    padding: 56px 24px;
  }
}
