/* Front Page Sections */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit,minmax(min(280px,100%),1fr));
}


#get-started {
  background: #fff;
  border-radius: var(--np-radius);
  box-shadow: var(--np-shadow);
  text-align: center;
  margin: 4rem auto;
  padding: 3rem 2rem;
  max-width: 800px;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 110px); /* Full viewport height minus header */
  background: none;
  /* gap: 3rem; */
  /* padding: calc(var(--np-space-section) / 2) 8rem; */
}

.hero-title {
  margin-top: 0;
}

.hero-content {
  flex: 1 1 0;
  max-width: 600px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--np-gray);
  margin-bottom: 2rem;
}

.hero-content .btn {
  display: inline-flex;
  align-items: center;      /* Vertically center icon and text */
  justify-content: center;  /* Horizontally center contents */
  gap: 8px;                 /* Optional: space between icon and text */
  width: fit-content;
  background: var(--np-primary);
  color: #fff;
  box-shadow: var(--np-shadow);
  border-radius: var(--np-radius);
  font-weight: 600;
  font-size: 1.6rem;
  transition: background 0.2s, color 0.2s;
}

.hero-content .btn:hover {
  background: #fff;
  color:  var(--np-primary);
}

.hero-content .btn:hover > svg {
  fill: var(--np-primary);
}


.hero-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-image img {
  max-width: 100%;
  width: 100%; 
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  object-fit: cover;
}

#about {
  background-color: aliceblue;
}

/* Responsive: stack hero on mobile */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column-reverse;
    gap: 2.5rem;
    padding: 2rem 1rem;
    min-height: unset;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-content .btn {
    align-self: center;
  }
  .hero-image img {
    width: 95vw;
    max-width: 480px; /* Increased from 380px */
  }
}
