.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(46, 47, 62, 0.7), rgba(46, 47, 62, 0.7)), 
              url('https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc267924-07c1-4c43-97de-62b355b22950') center/cover no-repeat;
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  min-height: 600px;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-mockup {
  width: 280px;
  height: 580px;
  background: var(--color-dark);
  border-radius: var(--border-radius);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.hero-mockup-inner {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  border-radius: calc(var(--border-radius) - 12px);
  overflow: hidden;
  position: relative;
}

.hero-mockup-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }
  
  .hero-mockup {
    width: 240px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-mockup {
    width: 200px;
    height: 420px;
    margin: 0 auto;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-mockup {
    display: none;
  }
  
  .hero-buttons .btn {
    max-width: none;
  }
}