/* B2B Specific Styles */
.hero-new-cta {
  margin: 20px 0;
}

/* Business Solutions section */
.information-new .row-new {
  margin-top: 40px;
  align-items: stretch;
}

.information-new .information-new-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Pricing Tables */
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.pricing-card-featured {
  border: 2px solid #005fce;
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #005fce;
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  border-bottom-left-radius: 8px;
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 700;
}

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 15px;
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #005fce;
}

.period {
  font-size: 14px;
  color: #777;
  margin-left: 5px;
}

.custom-price {
  font-size: 24px;
  font-weight: 700;
  color: #005fce;
}

.pricing-features {
  padding: 30px 20px;
}

.pricing-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.pricing-features li:before {
  content: '✓';
  display: inline-block;
  margin-right: 10px;
  color: #005fce;
  font-weight: bold;
}

.pricing-cta {
  padding: 0 20px 30px;
  text-align: center;
}

/* Testimonials */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before {
  content: '';
  font-size: 60px;
  color: #e0e0e0;
  position: absolute;
  top: -15px;
  left: -10px;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  aspect-ratio: 1/1;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author-info p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1;
  color: #777;
}

/* CTA Section */
.bg-purple-gradient {
  background: linear-gradient(135deg, rgb(1, 25, 86) 0%, #2575fc 100%);
  box-shadow: 0 10px 30px rgba(1, 25, 86, 0.2);
}

.text-white {
  color: #fff;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.cta-container {
  padding: 40px 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.cta-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIj48cGF0aCBkPSJNMTI4MCAwbC0yNjIuMSA0MS45TDU4Mi44IDk2LjVMNDUuOSA3Ny41TC0uMSAxNDBoMTI4MC4xeiIvPjwvZz48L3N2Zz4=');
  background-size: 100% 100%;
  z-index: 1;
  opacity: 0.3;
}

.cta-container h2,
.cta-container p,
.cta-container .cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cta-container .btn-new-outline {
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 26px;
  }

  .cta-container p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Custom buttons for CTA section */
.btn-new-white {
  background-color: #fff;
  color: #005fce;
  border: 2px solid #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-new-white:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #0047a5;
  text-decoration: none;
}

.btn-new-outline {
  background-color: transparent;
  color: #005fce;
  border: 2px solid #005fce;
}

.btn-new-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-new-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

/* Style for block buttons in pricing section */
.btn-block {
  display: block;
  width: 100%;
}

.data-source-logo {
  width: 50px;
  height: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pricing-card {
    max-width: 100%;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Data Sources Section */
.data-sources-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 30px !important;
  align-content: stretch !important;
}

.data-sources-container > .data-source-item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.data-source-item {
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.data-sources-container > .data-source-item .data-source-content {
  flex: 1 !important;
  min-height: 0 !important;
}

.data-source-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 95, 206, 0.1);
}

.data-source-logo-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

.data-source-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.data-source-logo img {
  max-width: 60%;
  max-height: 60%;
  transition: transform 0.3s ease;
}

.data-source-item:hover .data-source-logo img {
  transform: scale(1.1);
}

.data-source-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #005fce;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 95, 206, 0.2);
  z-index: 3;
}

.data-source-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.data-source-content h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.data-source-content p {
  margin: 0 0 20px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.data-source-stats {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.data-source-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #005fce;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive styles for data sources */
@media (max-width: 992px) {
  .data-source-item {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .data-sources-container {
    gap: 20px;
  }

  .data-source-item {
    max-width: 100%;
    flex: 1 0 100%;
    margin-bottom: 15px;
  }

  .data-source-logo {
    width: 70px;
    height: 70px;
  }

  .stat-number {
    font-size: 18px;
  }
}

.row-new {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.features-new-block img {
  width: 50%;
  height: 100%;
  object-fit: contain;
  margin-left: 25%;
}

/* Detailed Features Section */
.features-detailed-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.feature-detailed-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
}

.feature-detailed-icon {
  position: relative;
  width: 80px;
  flex-shrink: 0;
  margin-right: 30px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 95, 206, 0.1);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 95, 206, 0.1);
  transition: all 0.3s ease;
}

.icon-circle::before {
  display: none;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.feature-detailed-item:hover .icon-circle {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 95, 206, 0.15);
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.feature-detailed-item:hover .icon-circle img {
  transform: scale(1.1);
}

.icon-connector {
  position: absolute;
  top: 90px;
  left: 40px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: #e0e0e0;
  z-index: 1;
}

.feature-detailed-item:last-child .icon-connector {
  display: none;
}

.feature-detailed-content {
  flex: 1;
  padding-top: 10px;
}

.feature-detailed-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 95, 206, 0.15);
  margin-right: 15px;
  line-height: 1;
}

.feature-detailed-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.feature-detailed-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.feature-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-detailed-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}

.feature-detailed-list li:hover {
  transform: translateX(5px);
}

.feature-list-icon {
  margin-right: 12px;
  color: #005fce;
  font-size: 18px;
  margin-top: 2px;
}

.feature-list-icon i {
  color: #005fce;
}

.feature-detailed-action {
  margin-top: 30px;
}

/* Responsive styles for detailed features */
@media (max-width: 768px) {
  .features-detailed-container {
    padding: 0;
  }

  .feature-detailed-icon {
    width: 60px;
    margin-right: 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }

  .icon-connector {
    left: 30px;
  }

  .feature-number {
    font-size: 36px;
  }

  .feature-detailed-header h3 {
    font-size: 20px;
  }
}
