.project-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}

.project-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, black 30%, transparent 100%);
  opacity: .35;
}

.project-hero-glow {
  position: absolute;
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse, #00d4ff14 0%, transparent 70%);
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.project-title {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: .04em;
}

.project-title span {
  display: block;
  background: linear-gradient(135deg, var(--cyan), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-sub {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.process-section {
  background: var(--bg);
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color .25s, transform .2s;
}

.process-card:hover {
  border-color: var(--cyan-dim);
  transform: translateY(-4px);
}

.process-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--cyan);
  letter-spacing: .15em;
}

.process-card h3 {
  font-size: 1rem;
  margin-bottom: .7rem;
}

.process-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .9rem;
}

.project-form-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.project-form-section::before {
  content: '';
  position: absolute;
  inset: auto auto -120px 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  background: radial-gradient(ellipse, #00d4ff08 0%, transparent 70%);
  pointer-events: none;
}

.project-form-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-side-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 110px;
}

.briefing-highlights {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.highlight-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.highlight-card strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--text);
}

.highlight-card span {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.project-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#projectFormStatus {
  margin-top: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.faq-section {
  background: var(--bg);
}

.faq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color .25s, transform .2s;
}

.faq-card:hover {
  border-color: var(--cyan-dim);
  transform: translateY(-4px);
}

.faq-card h3 {
  font-size: .98rem;
  margin-bottom: .7rem;
}

.faq-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .project-hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .process-grid,
  .faq-grid,
  .project-form-wrapper {
    grid-template-columns: 1fr;
  }

  .form-side-info {
    position: static;
  }
}