* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
}

:root {
  --dark-purple: #2d1b4e;
  --medium-purple: #4a2c7a;
  --light-purple: #f5f0ff;
  --accent-purple: #6b3fa0;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-purple);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-purple);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

.lead-text {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark-purple) !important;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--accent-purple);
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-link-custom {
  color: var(--gray) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
  color: var(--accent-purple) !important;
}

.nav-link-custom:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover:after,
.nav-link-custom.active:after {
  width: 80%;
}

/* Buttons */
.btn-primary-custom {
  background: var(--dark-purple);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-purple);
}

.btn-primary-custom:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 63, 160, 0.2);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--dark-purple);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-purple);
}

.btn-outline-custom:hover {
  background: var(--dark-purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 63, 160, 0.05) 0%, rgba(107, 63, 160, 0) 70%);
  border-radius: 50%;
}

/* Cards */
.card-bg {
  background: var(--white);
  border: 1px solid rgba(107, 63, 160, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.card-bg:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 63, 160, 0.1);
  border-color: rgba(107, 63, 160, 0.2);
}

/* Badge */
.badge-pink {
  background: linear-gradient(135deg, var(--light-purple) 0%, #e9e0ff 100%);
  color: var(--accent-purple);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Features Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-purple);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon span {
  font-size: 2rem;
}

/* Stats Section */
.stats-section {
  background: var(--light-purple);
  padding: 4rem 0;
  margin: 3rem 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-purple);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
}

/* FAQ Items */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(107, 63, 160, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(107, 63, 160, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 700;
  color: var(--dark-purple);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background: var(--dark-purple);
  color: #e0d4ff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

footer a {
  color: #e0d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 3rem 0 4rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-purple {
  color: var(--accent-purple);
}

.bg-purple-light {
  background: var(--light-purple);
}

.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}