:root {
  --color-background: #fcf0d3;
  --color-primary: #F94144;
  --color-secondary: #F9C74F;
  --color-accent: #90BE6D;
  --color-text: #1A1A1A;
  --color-text-muted: #5F5B53;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.logo-img {
  height: 2rem;
  width: auto;
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.content-side {
  text-align: left;
  position: relative;
  z-index: 2;
}

.powered-by {
  color: var(--color-text-muted);
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 2rem;
}

.steps-list li {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-steps {
  display: none;
}

.media-side {
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
  background: linear-gradient(rgba(253, 164, 175, 0.05), rgba(239, 68, 68, 0.08));
}

.video-container:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-5px);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.media-item:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-5px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.media-item video,
.media-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.subtitle {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #e03a3d;
  transform: translateY(-2px);
}

.cta-button.primary {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.video-carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  max-height: 300px;
}

.video-carousel:hover {
  transform: scale(1.02);
}

.video-carousel video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.features {
  padding: 4rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.step {
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-number {
  background: var(--color-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  color: white;
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 2rem;
  }

  .content-side {
    text-align: center;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0 auto 1.5rem;
  }

  .powered-by {
    font-size: 0.9rem;
  }

  .steps-list {
    display: none;
  }

  .mobile-steps {
    display: block;
    margin: 1.5rem 0;
    font-size: 1rem;
    text-align: center;
    color: var(--color-text-muted);
  }

  .mobile-steps .arrow {
    color: var(--color-primary);
    margin: 0 0.5rem;
  }

  .media-grid {
    columns: 1;
  }

  .media-item {
    margin-bottom: 0.75rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .cta-button.primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  nav {
    padding: 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-img {
    height: 1.5rem;
  }
}