.compare-section { padding: 56px 24px; }
.compare-table-wrapper { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
.compare-table thead {
    background: var(--black);
    color: var(--white);
  }
.compare-table th {
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.1);
  }
.compare-table td {
    padding: 16px;
    border: 1px solid var(--border);
    background: var(--white);
  }
.compare-table tbody tr:nth-child(odd) td {
    background: #FAFAFA;
  }
.compare-table tbody tr:nth-child(even) td {
    background: var(--white);
  }
.compare-table .feature-col {
    font-weight: 600;
    color: var(--black);
    min-width: 180px;
  }
.compare-table .tnt-col {
    background: rgba(249, 115, 22, 0.05);
  }
.compare-table tbody tr:nth-child(odd) .tnt-col {
    background: rgba(249, 115, 22, 0.08);
  }
.check-mark { color: var(--orange); font-weight: 700; font-size: 18px; }
.x-mark { color: var(--muted); font-weight: 700; font-size: 16px; }
.callout-section { padding: 56px 24px; background: var(--light-bg); }
.callout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
.callout-card {
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
  }
.callout-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
  }
.callout-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
.testimonial-section { padding: 56px 24px; }
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.cta-section-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
@media (min-width: 640px) {
  .callout-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .compare-section { padding: 72px 48px; }
  .callout-section { padding: 72px 48px; }
  .callout-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-section { padding: 72px 48px; }
  .cta-section-inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
}
