/* ============================================
   COMPARISON TABLE SECTION
   Agency comparison table styling
   ============================================ */

.comparison-section {
  background: #F9FAFB;
  padding: 80px 0;
}

.comparison-section .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.comparison-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-section .section-overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF6B4A;
  margin-bottom: 12px;
}

.comparison-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
}

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

.comparison-table thead {
  background: #171717;
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: white;
  border-bottom: 2px solid #FF6B4A;
}

.comparison-table th:first-child {
  width: 30%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: #F9FAFB;
}

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

.comparison-table td {
  padding: 20px 24px;
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
  vertical-align: top;
}

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

.comparison-table td:last-child {
  background: rgba(16, 185, 129, 0.05);
  color: #065F46;
  font-weight: 500;
}

.comparison-message {
  margin-top: 32px;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 12px;
  border: 2px solid #FF6B4A;
}

.comparison-message p {
  font-size: 18px;
  color: #171717;
  line-height: 1.8;
  margin: 0;
}

.comparison-message em {
  font-style: normal;
}

.comparison-message strong {
  color: #FF6B4A;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 968px) {
  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 700px;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-section .section-title {
    font-size: 28px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px;
    font-size: 14px;
  }

  .comparison-message {
    padding: 24px;
  }

  .comparison-message p {
    font-size: 16px;
  }
}
