:root {
  --primary: #9C27B0;
  --secondary: #4A148C;
  --light-purple: #E1BEE7;
  --dark: #212121;
  --light: #FAFAFA;
  --accent: #FFC107;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Navigation */
nav {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.logo-icon {
  margin-right: 0.75rem;
}

.logo-text {
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 12rem;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 10;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 20;
}

.hero-heading {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subheading {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  margin-left: 1rem;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Features Section */
.features {
  padding: 8rem 0 5rem;
  position: relative;
  z-index: 30;
  margin-top: -6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-content {
  padding: 2rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.feature-description {
  color: #666;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: #F3E5F5;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  position: relative;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.step-description {
  color: #666;
}

/* Call To Action */
.cta {
  padding: 5rem 0;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-description {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #CCC;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animations */
.pulsate {
  animation: pulsate 2s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 2rem;
  }
  
  .btn {
    display: block;
    margin: 1rem auto;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.8rem;
  }
  
  .hero-subheading {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}
