/* Hero Section */
.hero {
  background: var(--secondary-gradient);
  padding: 50px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-text {
  flex-basis: 50%;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 80%;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex-basis: 50%;
  position: relative;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
  max-width: 100%;
}

.hero-image:hover img {
  transform: perspective(800px) rotateY(0) rotateX(0);
}

.glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(99, 211, 255, 0.5) 0%, transparent 70%);
  top: -20%;
  left: -20%;
  opacity: 0.7;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Benefits Section */
.benefits {
  padding: 100px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 100px 20px;
  background-color: #f0f4f8;
}

.feature-showcase {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.feature-item {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  background-color: var(--card-background);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.feature-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature-item.active {
  background: var(--primary-gradient);
  color: white;
}

.feature-item.active .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(74, 123, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition);
}

.feature-item.active .feature-icon svg {
  stroke: white;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.feature-item.active p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-display {
  position: relative;
  min-height: 400px;
}

.feature-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.feature-screenshot.active {
  opacity: 1;
  visibility: visible;
}

.feature-screenshot img {
  flex-basis: 60%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-description {
  flex-basis: 40%;
}

.feature-description h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-description ul {
  list-style: disc;
  padding-left: 20px;
}

.feature-description li {
  margin-bottom: 10px;
  color: var(--text-light);
  font-size: 1rem;
}
