/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2d3748;
  line-height: 1.2;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-text .description {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: white;
}

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

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: #fafafa;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

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

.benefit-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-item {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #667eea;
}

.feature-item p {
  color: #4a5568;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #667eea;
}

/* Products Preview Section */
.products-preview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.products-preview-section .section-title {
  -webkit-text-fill-color: white;
  color: white;
}

.products-preview-section .cta-button {
  background: white;
  color: #667eea;
  margin-top: 30px;
}

.products-preview-section .cta-button:hover {
  background: #f7fafc;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-content {
  text-align: center;
  margin-top: 60px;
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.contact-info p {
  margin: 15px 0;
  color: #4a5568;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 30px 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .image-placeholder {
    width: 300px;
    height: 300px;
    font-size: 70px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }
}
