.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #09131F;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}
.hero-text-container {
  max-width: 650px;
}
.hero-text-container h1 {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-top: 1rem;
  color: #FFFDFD;
}
.hero-text-container p {
  font-size: 1.125rem;
  color: #CBD2D0;
  margin-top: 1.5rem;
  max-width: 500px;
}
.btn-cta {
  display: inline-block;
  background: #0496FF;
  color: #FFFDFD;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-cta:hover {
  background: #0378cc;
}
.btn-outline {
  display: inline-block;
  border: 1px solid #0496FF;
  color: #0496FF;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(4, 150, 255, 0.1);
}
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -1px;
  color: #FFFDFD;
}
.cta-section p {
  color: #CBD2D0;
  margin-bottom: 2rem;
}
.line-divider {
  width: 60px;
  height: 2px;
  background: #0496FF;
  margin: 1.5rem auto;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.feature-item {
  text-align: center;
  padding: 2rem;
}
.feature-item i {
  font-size: 2rem;
  color: #0496FF;
  margin-bottom: 1rem;
}
.feature-item h3 {
  color: #FFFDFD;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: #CBD2D0;
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-text-container h1 { font-size: 2.5rem; }
  .features-row { grid-template-columns: 1fr; }
}