/* Why-Us Section Overrides */

  .why-us-wrap {
    padding: 60px 0 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .section-why-us {
    max-width: 70%;
    margin: 0 auto;
    color: #0a0a0a;
    padding: 0 24px;
  }

  /* Header */
  .why-us-header {
    text-align: center;
    margin-bottom: 64px;
  }


  .section-why-us .section-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: #0a0a0a;
    margin-bottom: 16px;
  }

  .section-title span {
    color: var(--gold);
    font-style: italic;
  }

  .section-why-us .section-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.85);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    margin-bottom: 64px;
  }

  /* Table */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
  }

  .col-feature { width: 24%; }
  .col-kenstack { width: 41%; }
  .col-agency { width: 35%; }

  /* Column headers */
  .compare-table thead tr th {
    padding: 0 0 20px;
    text-align: left;
    font-weight: 400;
  }

  .th-feature {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
  }

  .th-kenstack {
    padding-left: 0 !important;
    border-left: 1px solid rgba(212,175,55,0.2);
    border-right: 1px solid rgba(212,175,55,0.2);
    background: rgba(212,175,55,0.04);
    vertical-align: bottom;
  }

  .th-kenstack-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px 6px 0 0;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    width: 100%;
  }

  .th-kenstack-logo {
    height: 28px;
    width: auto;
    margin-right: 0;
    flex-shrink: 0;
  }


  .th-agency-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    width: 100%;
  }

  /* Rows */
  .compare-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s;
  }

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

  .compare-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
  }

  td {
    padding: 22px 0;
    vertical-align: top;
  }

  .td-feature {
    padding-right: 20px;
  }

  .feature-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.4;
  }


  .tick-icon {
    color: var(--gold);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
    margin-top: 4px;
    flex-shrink: 0;
  }

  .td-kenstack {
    padding-left: 18px;
    padding-right: 20px;
    border-left: 1px solid rgba(212,175,55,0.2);
    border-right: 1px solid rgba(212,175,55,0.2);
    background: rgba(212,175,55,0.04);
  }

  .kenstack-cell-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .kenstack-text {
    font-size: 16px;
    color: #0a0a0a;
    line-height: 1.6;
    font-weight: 400;
  }

  .kenstack-text strong {
    color: var(--gold-light);
    font-weight: 500;
  }

  .td-agency {
    padding-left: 24px;
    padding-right: 0;
  }

  .agency-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    font-weight: 300;
  }

  /* Bottom border of kenstack column */
  .kenstack-col-bottom {
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    border-radius: 0 0 4px 4px;
    position: absolute;
    transition: all 0.3s ease;
  }

  /* Bottom CTA strip */
  .bottom-strip {
    margin-top: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .bottom-strip-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    max-width: 420px;
    line-height: 1.4;
  }

  .bottom-strip-text em {
    color: var(--gold);
    font-style: italic;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* Animate rows on load */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  tbody tr {
    animation: fadeUp 0.45s ease both;
  }
  tbody tr:nth-child(1) { animation-delay: 0.05s; }
  tbody tr:nth-child(2) { animation-delay: 0.12s; }
  tbody tr:nth-child(3) { animation-delay: 0.19s; }
  tbody tr:nth-child(4) { animation-delay: 0.26s; }
  tbody tr:nth-child(5) { animation-delay: 0.33s; }
  tbody tr:nth-child(6) { animation-delay: 0.40s; }

@media (max-width: 768px) {
  .why-us-wrap {
    display: none !important;
  }
}