  /* ── Billing toggle ──────────────────────────────────────── */
  .billing-toggle {
    display: inline-flex;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
  }
  .billing-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    color: #6B7280;
  }
  .billing-btn.active {
    background: #C8700A;
    color: white;
    font-weight: 600;
  }
  .save-badge {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #58BB48;
    margin-left: 6px;
  }

  /* ── Pricing card ────────────────────────────────────────── */
  .pricing-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    flex: 1;
  }
  .pricing-card-pro {
    border-color: #C8700A;
    border-width: 2px;
    position: relative;
  }

  /* Pro "Most Popular" badge */
  .popular-badge {
    position: absolute;
    top: -1px;
    left: 32px;
    transform: translateY(-50%);
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #C8700A;
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
  }

  /* Price display */
  .price-amount {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #1C1C1C;
    line-height: 1;
  }
  .price-period {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9CA3AF;
    margin-left: 4px;
  }

  /* Feature list */
  .feature-list { list-style: none; padding: 0; margin: 0; }
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.4;
  }
  .feature-item.included { color: #1C1C1C; }
  .feature-item.excluded { color: #9CA3AF; }
  .feature-check {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .feature-item.included .feature-check { color: #C8700A; }
  .feature-item.excluded .feature-check { color: #D1D5DB; }

  /* ── Pricing FAQ ─────────────────────────────────────────── */
  .pricing-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
  }
  .pricing-faq-item:first-child { border-top: 1px solid #E5E7EB; }
  .pricing-faq-q {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 6px;
  }
  .pricing-faq-a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #3D4A56;
    line-height: 1.6;
  }
