/**
 * Pixelate Image - Missing Core Components CSS
 * Essential pi- prefixed classes that were missing
 */

/* Header Components */
.pi-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.pi-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pi-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pi-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.25rem;
}

.pi-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Navigation */
.pi-nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pi-nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pi-nav-link:hover {
  color: #3b82f6;
}

.pi-nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.pi-nav-mobile-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sections */
.pi-section-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pi-section-main {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pi-section-features {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.pi-section-how-it-works {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pi-section-testimonials {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.pi-section-faq {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pi-section-pricing {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.pi-section-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* Section Headers */
.pi-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pi-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pi-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Components */
.pi-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.pi-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pi-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.pi-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Grid Layouts */
.pi-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

/* Features */
.pi-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pi-feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.pi-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pi-feature-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Steps */
.pi-step {
  text-align: center;
}

.pi-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.pi-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pi-step-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonials */
.pi-testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pi-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.pi-testimonial-name {
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.pi-testimonial-role {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.pi-testimonial-content {
  color: #4b5563;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.pi-testimonial-rating {
  color: #fbbf24;
  font-size: 1rem;
}

/* FAQ */
.pi-faq-container {
  display: grid;
  gap: 1rem;
}

.pi-faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.pi-faq-answer {
  color: #6b7280;
  line-height: 1.6;
}

/* Pricing */
.pi-pricing-container {
  max-width: 600px;
  margin: 0 auto;
}

.pi-pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pi-pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pi-pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.pi-pricing-description {
  color: #6b7280;
  margin-bottom: 2rem;
}

.pi-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pi-pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #4b5563;
}

.pi-pricing-check {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
}

/* CTA */
.pi-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.pi-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.pi-footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.pi-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.pi-footer-company {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pi-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pi-footer-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi-footer-logo-text {
  font-weight: 600;
  font-size: 1.125rem;
}

.pi-footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.pi-footer-column h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pi-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pi-footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pi-footer-link:hover {
  color: white;
}

.pi-footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.pi-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pi-footer-copyright {
  color: #9ca3af;
}

.pi-footer-social {
  display: flex;
  gap: 1rem;
}

.pi-footer-social-link {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.pi-footer-social-link:hover {
  color: white;
}

/* Backgrounds */
.pi-bg-gradient-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* Animations */
.pi-animate--fade-in-down {
  animation: fadeInDown 0.8s ease-out;
}

.pi-animate--fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pi-header-container {
    padding: 1rem;
  }
  
  .pi-nav-desktop {
    display: none;
  }
  
  .pi-nav-mobile {
    display: block;
  }
  
  .pi-section-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .pi-hero-title {
    font-size: 2rem;
  }
  
  .pi-section-title {
    font-size: 2rem;
  }
  
  .pi-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pi-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}