/* Jazr Comparison Widget Styles */

.jazr-comparison-section {
  width: 100%;
  padding: 3rem 1rem;
  background-color: #fff;
}

.jazr-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Section */
.jazr-header-section {
  text-align: center;
  margin-bottom: 2rem;
}

.jazr-main-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.underlined-text {
  position: relative;
  display: inline-block;
}

.underlined-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff6b35;
}

.jazr-subtitle {
  font-size: 1.125rem;
  color: #666;
}

/* Comparison Container */
.jazr-comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jazr-comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Column Styles */
.jazr-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jazr-column-header {
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid;
}

.jazr-header {
  border-bottom-color: #ff6b35;
}

.jazr-human-header {
  border-bottom-color: #d1d5db;
}

.jazr-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.jazr-logo-box {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jazr-logo {
  background-color: #ff6b35;
}

.jazr-human-logo {
  background-color: #9ca3af;
}

.jazr-logo-text {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
}

.jazr-user-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  stroke-width: 2;
}

.jazr-column-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

.jazr-price {
  font-size: 1.875rem;
  font-weight: bold;
}

.jazr-price-color {
  color: #ff6b35;
}

.jazr-human-price {
  color: #4b5563;
}

.jazr-price-period {
  font-size: 1rem;
  color: #666;
}

/* Benefits List */
.jazr-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jazr-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jazr-icon-circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jazr-icon {
  background-color: #4a90e2;
}

.jazr-human-icon {
  background-color: #d1d5db;
}

.jazr-check-icon,
.jazr-x-icon {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 3;
}

.jazr-check-icon {
  color: #fff;
}

.jazr-x-icon {
  color: #6b7280;
}

.jazr-benefit-text {
  font-size: 0.875rem;
  color: #000;
}

.jazr-human-text {
  color: #6b7280;
}

/* VS Divider */
.jazr-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.jazr-vs-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jazr-vs-text {
  font-size: 1.125rem;
  font-weight: bold;
  color: #6b7280;
}

/* Savings Footer */
.jazr-savings-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.jazr-savings-text {
  font-size: 1.125rem;
  color: #4b5563;
}

.jazr-savings-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
  .jazr-comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .jazr-vs-divider {
    display: none;
  }

  .jazr-main-title {
    font-size: 1.5rem;
  }

  .jazr-subtitle {
    font-size: 1rem;
  }

  .jazr-price {
    font-size: 1.5rem;
  }
}
