/* --- Pricing Section Enhancements --- */
/* Reframing Text */
.pricing-reframe {
  font-size: 14px;
  color: rgba(6, 8, 10, 0.65);
  margin-top: 16px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Plan Chips Container */
.plan-chips {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Plan Divider */
.plan-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 20px 0;
}


/* Plan Description */
.plan-description {
  color: rgba(6, 8, 10, 0.7);
  margin-top: 16px;
  line-height: 1.6;
}

/* Risk Reversal Block */
.risk-reversal {
  margin-top: 80px;
  text-align: center;
}

.risk-reversal h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.risk-reversal-subtitle {
  color: rgba(6, 8, 10, 0.65);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.risk-item {
  padding: 24px;
  text-align: center;
}

.risk-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(70, 129, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-icon i {
  width: 28px;
  height: 28px;
  color: #4681f6;
}

.risk-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.risk-item p {
  font-size: 14px;
  color: rgba(6, 8, 10, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* Comparison Section */
.comparison-section {
  margin-top: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
}

.comparison-table-container {
  padding: 0;
  overflow: hidden;
  min-width: 600px;
  margin: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead tr {
  background: rgba(70, 129, 246, 0.08);
}

.comparison-table th {
  padding: 20px 20px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
  color: #0f172a;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 15px;
}

/* Highlight Elira Column */
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  background-color: rgba(70, 129, 246, 0.04);
}

.comparison-table th:nth-child(2) {
  color: #4681f6;
  font-size: 16px;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #1e293b;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-check {
  color: #22c55e;
}

.comparison-check i {
  width: 18px;
  height: 18px;
  color: #22c55e;
}

.comparison-value {
  margin-top: 4px;
  font-size: 14px;
}

.comparison-neutral {
  color: rgba(6, 8, 10, 0.6);
  font-size: 14px;
}

.comparison-neutral-small {
  color: rgba(6, 8, 10, 0.6);
  font-size: 13px;
}

.mobile-scroll-hint {
  text-align: center;
  font-size: 13px;
  color: rgba(6, 8, 10, 0.5);
  margin-top: 12px;
  display: none;
}

.mobile-scroll-hint i {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .mobile-scroll-hint {
    display: block;
  }

  .risk-reversal h3 {
    font-size: 24px;
  }

  .comparison-section h3 {
    font-size: 24px;
  }
}