:root {
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --violet-50: #f5f3ff;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
}

body {
  background: linear-gradient(135deg, var(--indigo-50), var(--violet-50));
  color: var(--gray-800);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--indigo-600), var(--violet-600));
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--indigo-700), var(--violet-700));
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: var(--white);
  color: var(--indigo-700);
  border: 1px solid var(--indigo-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--indigo-700);
}

.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--indigo-600), var(--violet-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.badge-text {
  color: var(--indigo-600);
  font-weight: 600;
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.metric-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: scale(1.05);
}

.metric-item {
  margin-bottom: 1.5rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--gray-600);
}

.metric-value {
  color: var(--indigo-600);
  font-weight: 700;
}

.progress-bar {
  background: var(--gray-200);
  border-radius: 9999px;
  height: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--indigo-500), var(--violet-500));
  border-radius: 9999px;
}

.w-4-5 {
  width: 80%;
}

.w-5-6 {
  width: 83.333333%;
}

.w-full {
  width: 100%;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: linear-gradient(135deg, var(--indigo-50), var(--violet-50));
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.feature-list {
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--indigo-500);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, var(--gray-50), var(--indigo-50));
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card.popular {
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--indigo-500), var(--violet-500));
  color: var(--white);
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--indigo-600);
}

.price-period {
  color: var(--gray-600);
  margin-left: 0.25rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-feature i {
  color: var(--indigo-500);
  margin-right: 0.75rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-item {
  text-align: center;
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-4px);
}

.process-step {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--indigo-600), var(--violet-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.process-item:hover .process-step {
  transform: scale(1.1);
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, var(--indigo-50), var(--violet-50));
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, var(--indigo-600), var(--violet-600));
  color: var(--white);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}
