body {
  font-family: 'Figtree', sans-serif;
  background: #f9fafb;
  color: #111827;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  height: 100vh;
  margin: 0;
}

main {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: calc(100vh - 80px);
}

header {
  height: 80px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

header .logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4f46e5;
  user-select: none;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  color: #6b7280;
  font-weight: 500;
  margin-left: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.nav-dropdown > a:hover {
  color: #4338ca;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
  z-index: 100;
}

.nav-dropdown-content a {
  color: #4b5563;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.nav-dropdown-content a:hover {
  background-color: #e0e7ff;
  color: #4338ca;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

header nav a {
  color: #6b7280;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
  user-select: none;
}

header nav a:hover {
  color: #4338ca;
}

footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

footer a {
  color: #6b7280;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #4338ca;
}

section {
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4rem;
  padding-right: 4rem;
  gap: 6rem;
}

section:nth-child(odd) {
  flex-direction: row;
}

section:nth-child(even) {
  flex-direction: row-reverse;
}

.text-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.text-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4b5563;
}

.image-wrapper {
  flex: 1 1 480px;
  max-width: 480px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgb(99 102 241 / 0.3);
  background: white;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.banner {
  background: white;
  flex-direction: row;
  padding-left: 4rem;
  padding-right: 4rem;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.banner h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #4338ca;
  margin-bottom: 1rem;
  max-width: 520px;
  user-select: none;
}

.banner p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 400px;
}

.cta {
  min-height: 100vh;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgb(99 102 241 / 0.15);
  gap: 1.5rem;
  scroll-snap-align: start;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  user-select: none;
}

.cta p {
  font-size: 1.125rem;
  color: #4b5563;
  user-select: none;
  max-width: 520px;
  margin: 0 auto;
}

.cta a {
  background-color: #4338ca;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  user-select: none;
}

.cta a:hover {
  background-color: #3730a3;
}

.enterprise {
  min-height: 100vh;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgb(99 102 241 / 0.15);
  gap: 1.5rem;
  scroll-snap-align: start;
}

.enterprise h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  user-select: none;
}

.enterprise p {
  font-size: 1.125rem;
  color: #4b5563;
  user-select: none;
  max-width: 520px;
  margin: 0 auto;
}

.enterprise a {
  background-color: #4338ca;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  user-select: none;
}

.enterprise a:hover {
  background-color: #3730a3;
}

.imagination-zone {
  height: 100vh;
}
