  /* ============================================================
     SCOPED STYLES — all rules are namespaced under .aaa-pricing
     to guarantee zero collision with the rest of the site's CSS.
     ============================================================ */

  .aaa-pricing * {
    box-sizing: border-box;
  }

  .aaa-pricing {
    --aaa-teal-dark: #0f766e;
    --aaa-teal: #0e9488;
    --aaa-teal-light: #14b8a6;
    --aaa-ink: #1f2937;
    --aaa-muted: #6b7280;
    --aaa-border: #e5e7eb;
    --aaa-bg-tab: #f0f1f2;
    --aaa-white: #ffffff;

    font-family: "Gordita", sans-serif;
    max-width: 980px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .aaa-pricing__shell {
    background: var(--aaa-white);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10);
    overflow: hidden;
  }

  /* ---------- Tab bar ---------- */
  .aaa-pricing__tabbar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--aaa-bg-tab);
    padding: 10px 12px;
  }

  .aaa-pricing__arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--aaa-white);
    border: 1.5px solid var(--aaa-teal);
    color: var(--aaa-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .aaa-pricing__arrow:hover {
    background: var(--aaa-teal);
    color: var(--aaa-white);
  }

  .aaa-pricing__arrow svg {
    width: 16px;
    height: 16px;
  }

  .aaa-pricing__tabs {
    flex: 1 1 auto;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .aaa-pricing__tabs::-webkit-scrollbar {
    display: none;
  }

  .aaa-pricing__tab {
    flex: 0 0 auto;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #4b5563;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .aaa-pricing__tab:hover {
    background: #e4e6e8;
  }

  .aaa-pricing__tab.is-active {
    background: var(--aaa-teal);
    color: var(--aaa-white);
  }

  .aaa-pricing__tab.is-active:hover {
    background: var(--aaa-teal);
  }

  /* ---------- Header (price) ---------- */
  .aaa-pricing__header {
    background: linear-gradient(135deg, var(--aaa-teal-light) 0%, var(--aaa-teal-dark) 100%);
    color: var(--aaa-white);
    padding: 40px 44px 34px;
  }

  .aaa-pricing__title {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.3px;
  }

  .aaa-pricing__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .aaa-pricing__price {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
  }

  .aaa-pricing__period {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
  }

  .aaa-pricing__note {
    margin: 12px 0 0;
    font-size: 13px;
    opacity: 0.85;
  }

  /* ---------- Body ---------- */
  .aaa-pricing__body {
    padding: 36px 44px 8px;
  }

  .aaa-pricing__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--aaa-border);
    font-size: 17px;
    color: #374151;
  }

  .aaa-pricing__feature:last-child {
    border-bottom: none;
  }

  .aaa-pricing__check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--aaa-teal);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aaa-pricing__check svg {
    width: 13px;
    height: 13px;
  }

  /* ---------- Footer ---------- */
  .aaa-pricing__footer {
    padding: 32px 44px 44px;
  }

  .aaa-pricing__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 19px;
    background: var(--aaa-teal);
    color: var(--aaa-white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
  }

  .aaa-pricing__cta:hover {
    background: var(--aaa-teal-dark);
  }

  .aaa-pricing__cta:active {
    transform: scale(0.99);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 640px) {
    .aaa-pricing {
      padding: 0 12px;
    }

    .aaa-pricing__arrow {
      width: 32px;
      height: 32px;
    }

    .aaa-pricing__arrow svg {
      width: 13px;
      height: 13px;
    }

    .aaa-pricing__tab {
      font-size: 13px;
      padding: 11px 15px;
    }

    .aaa-pricing__header,
    .aaa-pricing__body,
    .aaa-pricing__footer {
      padding-left: 22px;
      padding-right: 22px;
    }

    .aaa-pricing__title {
      font-size: 21px;
      margin-bottom: 12px;
    }

    .aaa-pricing__price {
      font-size: 34px;
    }

    .aaa-pricing__period {
      font-size: 15px;
    }

    .aaa-pricing__feature {
      font-size: 14.5px;
      gap: 12px;
      padding: 14px 0;
    }
  }