/* Fonts */
body {
  background: #fef7ff;
  color: #333333;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Typography */
.serif-font {
  font-family: 'Playfair Display', serif;
}

.gradient-text {
  background: linear-gradient(90deg, #8a2be2, #da70d6, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards */
.card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, #8a2be2, #da70d6);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.25);
}

/* Animations, badges, icons, scrollbar */
/* (copy rest exactly from your <style>) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
    
    body {
      background: #fef7ff;
      color: #333333;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }
    
    .serif-font {
      font-family: 'Playfair Display', serif;
    }
    
    .gradient-text {
      background: linear-gradient(90deg, #8a2be2, #da70d6, #ff69b4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .card {
      background: white;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(138, 43, 226, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
    }
    
    .btn-primary {
      background: linear-gradient(90deg, #8a2be2, #da70d6);
      color: white;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(138, 43, 226, 0.25);
    }
    
    .highlight-border {
      border: 2px solid transparent;
      background: linear-gradient(white, white) padding-box,
                  linear-gradient(135deg, #8a2be2, #da70d6) border-box;
    }
    
    .pulse-dot {
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f5f5f5;
    }
    
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #8a2be2, #da70d6);
      border-radius: 4px;
    }
    
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    
    .hero-gradient {
      background: linear-gradient(135deg, #fef7ff 0%, #f5f0ff 100%);
    }
    
    .section-title {
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, #8a2be2, #da70d6);
      border-radius: 2px;
    }
    
    .badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
    }
    
    .floating-image {
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
      border: 8px solid white;
    }
    
    .testimonial-card {
      background: linear-gradient(135deg, #8a2be2, #da70d6);
      color: white;
    }
    
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    
    /* Image hover effect */
    .img-hover-effect {
      transition: transform 0.5s ease;
    }
    
    .img-hover-effect:hover {
      transform: scale(1.02);
    }