.switch-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

@media (max-width: 991px) {
  .switch-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .switch-stats {
    grid-template-columns: 1fr;
  }
}
.switch-stat {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  text-align: left;
  box-shadow: 0 2px 16px rgba(21, 21, 51, 0.06);
  border: 1px solid rgba(130, 89, 232, 0.08);
}

.switch-stat__num {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #8259E8;
  margin-bottom: 6px;
  line-height: 1.15;
}

.switch-stat__label {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.45;
  margin: 0;
}

.switch-cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.switch-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #8259E8;
  color: #FFFFFF;
  border: 1px solid #8259E8;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.switch-btn-primary:hover {
  background: #6B46C1;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(130, 89, 232, 0.25);
}

.switch-btn-primary:active {
  transform: translateY(1px);
}

.switch-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #1a1a2e;
  border: 1px solid #d9d6ee;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.switch-btn-secondary:hover {
  background: #f5f2ff;
  border-color: #8259E8;
  color: #111325;
}

.switch-intro p {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.switch-quote {
  background: #f5f2ff;
  border-left: 4px solid #8259E8;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 0;
}

.switch-quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.switch-quote cite {
  font-size: 0.85rem;
  color: #6B46C1;
  font-style: normal;
  font-weight: 600;
}

.switch-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .switch-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .switch-pillars {
    grid-template-columns: 1fr;
  }
}
.switch-pillar {
  background: #FFFFFF;
  border: 1px solid #eeedfe;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.switch-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(130, 89, 232, 0.12);
}

.switch-pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(130, 89, 232, 0.12);
  color: #8259E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.switch-pillar h3 {
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.switch-pillar p {
  font-size: 0.9rem;
  color: #6b6b80;
  line-height: 1.6;
  margin: 0;
}

.switch-section {
  padding: 4rem 0;
}

.switch-section h2 {
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.switch-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .switch-faq-grid {
    grid-template-columns: 1fr;
  }
}
.switch-faq-item {
  background: #f5f5f9;
  border-radius: 16px;
  padding: 1.5rem;
}

.switch-faq-item h3 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.switch-faq-item p {
  font-size: 0.9rem;
  color: #4a4a5a;
  line-height: 1.6;
  margin: 0;
}

.switch-final-cta {
  background: linear-gradient(135deg, #f7f4ff 0%, #f0f4ff 100%);
  padding: 4rem 0;
  text-align: center;
}

.switch-final-cta h2 {
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.switch-final-cta p {
  font-size: 1rem;
  color: #4a4a5a;
  margin-bottom: 1.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.switch-final-cta__note {
  font-size: 0.85rem;
  color: #6b6b80;
  margin-top: 1rem;
}

.switch-final-cta__note a {
  color: #8259E8;
  text-decoration: none;
  font-weight: 600;
}

.main-page .switch-section h2 {
  font-size: 2rem;
  line-height: 1.25;
}

/* Table section */
.compare-table-section {
  padding: 4rem 0 5rem;
  background: #f9f8fd;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
}

/* Header */
.compare-table thead th {
  padding: 1.4rem 1.75rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: none;
}

.compare-table th.compare-table__feature {
  width: 24%;
  background: #0f1023;
  color: #FFFFFF;
}

.compare-table th.compare-table__youricp {
  background: #8259E8;
  color: #FFFFFF;
  width: 38%;
}

.compare-table th.compare-table__competitor {
  background: #1a1c35;
  color: rgba(255, 255, 255, 0.85);
  width: 38%;
}

/* Body rows */
.compare-table tbody tr {
  border-bottom: 1px solid #eeecf8;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background-color: rgba(130, 89, 232, 0.025);
}

.compare-table td {
  padding: 1.2rem 1.75rem;
  font-size: 0.9rem;
  color: #1f2937;
  vertical-align: top;
  line-height: 1.6;
}

/* Feature label */
.compare-table td.compare-table__label {
  font-weight: 600;
  font-size: 0.82rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fafafa;
  border-right: 1px solid #eeecf8;
  vertical-align: middle;
}

/* YourICP column */
.compare-table tbody td.compare-table__youricp {
  background: #faf7ff;
  border-left: 2px solid rgba(130, 89, 232, 0.2);
  border-right: 1px solid #ede8fa;
}

/* Competitor column */
.compare-table tbody td.compare-table__competitor {
  background: #FFFFFF;
}

/* Badges */
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.compare-badge i {
  font-size: 0.75rem;
  flex-shrink: 0;
}

.compare-badge--win {
  background: #dcfce7;
  color: #15803d;
}

.compare-badge--lose {
  background: #fee2e2;
  color: #b91c1c;
}

.compare-badge--neutral {
  background: #f1f5f9;
  color: #64748b;
}

.compare-detail {
  font-size: 0.83rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* Differentiators */
.compare-differentiators-section {
  background: #FFFFFF;
  padding: 5rem 0;
}

.compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #8259E8;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.15s ease;
}
.compare-link:hover {
  color: #6B46C1;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-table th.compare-table__feature,
  .compare-table td.compare-table__label {
    display: none;
  }
  .compare-table th.compare-table__youricp,
  .compare-table th.compare-table__competitor,
  .compare-table tbody td.compare-table__youricp,
  .compare-table tbody td.compare-table__competitor {
    width: 50%;
  }
}

/*# sourceMappingURL=why-teams-switch.css.map */
