* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

.hero {
  min-height: 85vh;
  padding: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: white;
}

nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero-content {
  max-width: 1120px;
  margin: 120px auto 0;
}

.eyebrow {
  color: #93c5fd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 16px 0;
}

.subtitle {
  max-width: 680px;
  font-size: 1.25rem;
  color: #dbeafe;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 22px;
  background: #2563eb;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}

.card h3 {
  margin-top: 0;
  line-height: 1.2;
}

.about {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about p,
.cta p {
  max-width: 750px;
  font-size: 1.1rem;
}

.cta {
  text-align: center;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding: 32px;
  text-align: center;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

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

  .hero-content {
    margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px;
  }

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

  .section {
    padding: 56px 24px;
  }
}
