/* Hero Section Styles */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/1642770/pexels-photo-1642770.jpeg?auto=compress&cs=tinysrgb&w=600') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 56rem;
}

.hero h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
  border-radius: var(--border-radius-md);
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  max-width: 50rem;
  margin-left: var(--spacing-lg);
  animation: floatUp 3s ease-in-out infinite alternate;
}

.device-mockup {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(800px) rotateY(-15deg) rotateX(10deg);
  animation: fadeInRight 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg) translateX(50px);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg) translateX(0);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: var(--spacing-xl);
  }
  
  .hero-image {
    max-width: 70%;
    margin-left: 0;
  }
  
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 3.6rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .cta-button, .secondary-button {
    width: 100%;
    text-align: center;
  }
  
  .hero-image {
    max-width: 90%;
  }
}