/* Billing toggle */
    .billing-toggle-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 28px 0 48px;
    }

    .billing-label {
      font-size: 14px;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.2s;
    }

    .billing-label.active {
      color: var(--fg);
      font-weight: 600;
    }

    .toggle-switch {
      position: relative;
      width: 44px;
      height: 24px;
      cursor: pointer;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .toggle-track {
      position: absolute;
      inset: 0;
      background: var(--line);
      border-radius: 12px;
      transition: background 0.2s;
    }

    .toggle-track::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: var(--fg);
      border-radius: 50%;
      transition: transform 0.2s;
    }

    .toggle-switch input:checked + .toggle-track {
      background: var(--accent);
    }

    .toggle-switch input:checked + .toggle-track::after {
      transform: translateX(20px);
    }

    .annual-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #22c55e;
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.25);
      border-radius: 6px;
      padding: 2px 8px;
    }

    /* 3-column pricing grid */
    .pricingGrid3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .pricingGrid3 { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    }

    .plan-tagline {
      font-size: 13px;
      color: var(--muted);
      margin: 0 0 4px;
      min-height: 36px;
    }

    .price-original {
      font-size: 13px;
      color: var(--muted);
      text-decoration: line-through;
      margin-left: 4px;
      display: none;
    }

    .price-original.show { display: inline; }

    .annual-savings {
      font-size: 12px;
      color: #22c55e;
      font-weight: 600;
      margin-left: 6px;
      display: none;
    }

    .annual-savings.show { display: inline; }

    .feature-item svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: var(--accent);
    }

    .feature-item.muted-item svg {
      color: #3f3f46;
    }

    .feature-item.muted-item {
      color: #52525b;
    }

    /* Section divider */
    .section-rule {
      border: none;
      border-top: 1px solid var(--line);
      margin: 64px 0 48px;
    }

    /* Comparison table */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      margin-top: 8px;
    }

    .compare-table thead th {
      padding: 12px 16px;
      text-align: center;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 1px solid var(--line);
    }

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

    .compare-table thead th.col-highlight {
      color: var(--accent);
    }

    .compare-table tbody tr {
      border-bottom: 1px solid var(--line);
    }

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

    .compare-table tbody tr:hover {
      background: rgba(255,255,255,0.02);
    }

    .compare-table td {
      padding: 12px 16px;
      text-align: center;
      color: var(--muted);
    }

    .compare-table td:first-child {
      text-align: left;
      color: var(--fg);
      font-weight: 500;
    }

    .compare-table td.col-highlight {
      background: rgba(59,130,246,0.04);
    }

    .compare-table .section-head td {
      padding: 20px 16px 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #52525b;
      border-bottom: none;
    }

    .check-yes { color: var(--accent); font-size: 16px; }
    .check-no  { color: #3f3f46; font-size: 16px; }

    /* Trust row */
    .trust-row {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin: 48px 0 0;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .trust-item svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: #52525b;
    }

    /* Bottom CTA */
    .pricing-cta {
      text-align: center;
      padding: 72px 0 40px;
    }

    .pricing-cta h2 {
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 12px;
      letter-spacing: -0.03em;
    }

    .pricing-cta p {
      font-size: 16px;
      color: var(--muted);
      margin: 0 0 32px;
    }
