body {
  overflow-x: hidden;
}

.hero-content h1 {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.button {
  max-width: 100%;
}

.section h2 {
  margin-bottom: var(--space-md);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  min-width: 0;
}

.carousel {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.carousel img {
  width: 100%;
  height: auto;
  transition: transform var(--transition);
}

.carousel img:hover {
  transform: scale(1.03);
}

.grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

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

  .hero-media {
    max-height: 300px;
  }
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}