.hero {
  position: relative;
  padding: 6rem 5%;
  text-align: center;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-blue));

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.hero-cta { 
  display: flex; 
  gap: 1rem; 
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center; 
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230b0b12"/><path d="M0 0L100 100M100 0L0 100" stroke="%231a1a2e" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.trusted { text-align: center; padding: 3rem 5%; }
.trusted p { margin-bottom: 1.5rem; color: var(--text-secondary); }
.logos { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.logo-placeholder {
  width: 120px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.features-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
}
.feature-card {
  background: rgba(18, 18, 27, 0.6);
  border: 1px solid rgba(0, 247, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-cyan);
}
.icon { font-size: 2.5rem; margin-bottom: 1rem; }

.dashboard-preview {
  text-align: center;
  padding: 4rem 5%;
}
.mockup-glow {
  width: 80%;
  max-width: 900px;
  height: 800px;
  margin: 0 auto 2rem;
  background: rgba(0, 10, 20, 0.4);
  border-radius: var(--border-radius);
  box-shadow: var(--glow-blue);
}

.why-crestwall {
  padding: 4rem 5%;
  text-align: center;
}
.why-crestwall ul { max-width: 600px; margin: 2rem auto; list-style: none; }
.why-crestwall li { padding: 0.5rem 0; font-size: 1.1rem; }

.final-cta {
  text-align: center;
  padding: 4rem 5%;
  background: rgba(0, 20, 30, 0.2);
  margin: 4rem 0;
}
.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--neon-blue), var(--neon-cyan));

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}