/* vCard Solutions Page Styles */

/* Hero Section */
.solutions-hero {
  width: 100%;
  max-width: 1440px;
  margin: 2rem auto;
  text-align: center;
}

.solutions-hero img {
  max-width: 100%;
  height: auto;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

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

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

.pricing-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.125rem;
  color: #333;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(35, 42, 105, 0.2);
}

.popular-tag {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
}

.card-header {
  margin-bottom: 2rem;
}

.card-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.card-header p {
  font-size: 0.75rem;
  color: #a2a2a2;
  line-height: 1.4;
}

.card-price {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.card-price h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card-price p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.75rem !important;
  font-style: italic;
  color: #888 !important;
}

.card-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature img {
  width: 20px;
  height: 20px;
}

.feature p {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-actions .btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 2rem;
}

/* Examples Section */
.examples-section {
  padding: 4rem 0;
}

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

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

.examples-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.examples-header p {
  font-size: 1.125rem;
}

.examples-cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.example-card {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.example-image {
  margin-bottom: 1rem;
}

.example-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.example-info {
  margin-bottom: 1.5rem;
}

.example-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.example-info p {
  font-size: 1.125rem;
  color: #666;
}

.example-qr-codes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qr-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.qr-code-item p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.qr-code-item img {
  width: 150px;
  height: auto;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

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

.process-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.process-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1rem;
}

.step-indicator {
  width: 7px;
  height: 100%;
  min-height: 100px;
  background-color: #d9d9d9;
  border-radius: 4px;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

.step-content h3 {
  font-size: 1.75rem;
  margin: 0;
}

.step-content p {
  font-size: 1.125rem;
  color: #555;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

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

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0;
}

.faq-question img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-question.active img {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem 0;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pricing-cards {
    gap: 1rem;
  }
  
  .process-content {
    flex-direction: column;
  }
  
  .process-image {
    order: 1;
  }
  
  .process-steps {
    order: 2;
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2rem;
  }
  
  .pricing-card {
    max-width: 100%;
  }
  
  .examples-cards {
    gap: 2rem;
  }
  
  .example-card {
    max-width: 100%;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-indicator {
    width: 100%;
    height: 7px;
    min-height: auto;
  }
}
